diff --git a/data_api/CreateIndexES.py b/data_api/CreateIndexES.py index 9e36d72..0932091 100644 --- a/data_api/CreateIndexES.py +++ b/data_api/CreateIndexES.py @@ -41,10 +41,10 @@ class CreateIndexES: #es.indices.create(index=index_name, body=mapping, ignore=400) # Ignore if the index already exists # - filenames = next(walk(os.path.join(self.BASE_DIR,'static/data/json/')), (None, None, []))[2] + filenames = next(walk(os.path.join(self.BASE_DIR,'media/data/json/')), (None, None, []))[2] for file in filenames: - with open(os.path.join(self.BASE_DIR,'static/data/json/')+file, 'r') as f: + with open(os.path.join(self.BASE_DIR,'media/data/json/')+file, 'r') as f: data = json.load(f) actions = [ { diff --git a/data_api/PreprocessFile.py b/data_api/PreprocessFile.py index 87f57cb..ea5005b 100644 --- a/data_api/PreprocessFile.py +++ b/data_api/PreprocessFile.py @@ -85,10 +85,10 @@ class PreprocessFile: matcher.add("Can", [pattern5]) root_json_dir = os.path.join( - self.BASE_DIR, "static/data/json/" + self.BASE_DIR, "media/data/json/" ) # "../Standards/json" root_data_json_dir = os.path.join( - self.BASE_DIR, "static/data/" + self.BASE_DIR, "media/data/" ) # "../Standards/json" summary_text = "Summary" data = [] @@ -109,7 +109,7 @@ class PreprocessFile: # Configure logging settings log_file = os.path.join( - self.BASE_DIR, "static/data/json_log.log" + self.BASE_DIR, "media/data/json_log.log" ) # "../Standards/json/json_log.log" # Specify the path and filename for the log file logging.basicConfig( filename=log_file, # Set the log file @@ -129,14 +129,18 @@ class PreprocessFile: # logging has to come here number_of_sections_after_cleaning_per_file = 0 try: + print(standard_file_pdf.path) + print('+++++++++++++++++++++++++++++++++++++++++++++++++++++++++') word_doc = Document(standard_file_word.path) for paragraph in word_doc.paragraphs: + if ( paragraph.style.name.startswith("Heading") or "Section" in paragraph.style.name or "Sub-section" in paragraph.style.name ): # If we're starting a new section, save off the old one + if current_section: sections.append(current_section.strip()) current_section = "" @@ -161,7 +165,7 @@ class PreprocessFile: first_line = section.strip().splitlines()[0] text_to_search = first_line page_num = self.find_text_in_pdf_from_summary( - standard_file_pdf, text_to_search, summary_text + standard_file_pdf.path, text_to_search, summary_text ) doc = nlp(section) @@ -204,6 +208,7 @@ class PreprocessFile: "Should": should, "Must": must, } + print(section_boj) data_per_file.append(section_boj) data.append(section_boj) else: diff --git a/data_api/__pycache__/CreateIndexES.cpython-310.pyc b/data_api/__pycache__/CreateIndexES.cpython-310.pyc index 3cb5f82..a1375e1 100644 Binary files a/data_api/__pycache__/CreateIndexES.cpython-310.pyc and b/data_api/__pycache__/CreateIndexES.cpython-310.pyc differ diff --git a/data_api/__pycache__/PreprocessFile.cpython-310.pyc b/data_api/__pycache__/PreprocessFile.cpython-310.pyc index 94e3efd..8c26c62 100644 Binary files a/data_api/__pycache__/PreprocessFile.cpython-310.pyc and b/data_api/__pycache__/PreprocessFile.cpython-310.pyc differ diff --git a/data_api/__pycache__/models.cpython-310.pyc b/data_api/__pycache__/models.cpython-310.pyc index 601686b..1fffc31 100644 Binary files a/data_api/__pycache__/models.cpython-310.pyc and b/data_api/__pycache__/models.cpython-310.pyc differ diff --git a/data_api/__pycache__/views.cpython-310.pyc b/data_api/__pycache__/views.cpython-310.pyc index 076df60..b859281 100644 Binary files a/data_api/__pycache__/views.cpython-310.pyc and b/data_api/__pycache__/views.cpython-310.pyc differ diff --git a/data_api/api/__pycache__/urls.cpython-310.pyc b/data_api/api/__pycache__/urls.cpython-310.pyc index d118d5c..7595869 100644 Binary files a/data_api/api/__pycache__/urls.cpython-310.pyc and b/data_api/api/__pycache__/urls.cpython-310.pyc differ diff --git a/data_api/api/urls.py b/data_api/api/urls.py index 1760775..ba661b7 100644 --- a/data_api/api/urls.py +++ b/data_api/api/urls.py @@ -2,9 +2,7 @@ from django.urls import path from . import views from .views import MyTokenObtainPairView -from rest_framework_simplejwt.views import ( - TokenRefreshView, -) +from rest_framework_simplejwt.views import TokenRefreshView urlpatterns = [ path('', views.getRoutes, name="routes"), diff --git a/data_api/models.py b/data_api/models.py index 80aedc5..793c6e6 100644 --- a/data_api/models.py +++ b/data_api/models.py @@ -5,7 +5,7 @@ import os def dynamic_upload_to(instance, filename): # Generate a dynamic folder name based on some criteria (e.g., user, date, etc.) return os.path.join( - "iddrs_api/static/data/Standards", str(instance.levelNumber), filename + "data/Standards", str(instance.levelNumber), filename ) diff --git a/data_api/views.py b/data_api/views.py index 83d9da0..00e0ee8 100644 --- a/data_api/views.py +++ b/data_api/views.py @@ -4,8 +4,7 @@ from .serializers import LevelSerializer, StandardsSerializer, FileEventSerializ from django.views.decorators.csrf import csrf_exempt import os from pathlib import Path -from rest_framework.decorators import api_view, permission_classes -from rest_framework.permissions import IsAuthenticated +from rest_framework.decorators import api_view from rest_framework.response import Response from django.db.models import Max import shutil @@ -17,12 +16,11 @@ import logging logger = logging.getLogger(__name__) # Create your views here. -#@permission_classes([IsAuthenticated]) + class LevelViewSet(viewsets.ModelViewSet): queryset = Levels.objects.all() serializer_class = LevelSerializer -#@permission_classes([IsAuthenticated]) class StandardsViewSet(viewsets.ModelViewSet): queryset = StandardsList.objects.all().order_by('levelNumber') serializer_class = StandardsSerializer @@ -39,7 +37,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent def check_level_folder(): level_numbers = Levels.objects.values_list('levelNumber', flat=True) for level_number in level_numbers: - level_folder = os.path.join(BASE_DIR,'static/data/Standards/'+str(level_number)+'/') + level_folder = os.path.join(BASE_DIR,'media/data/Standards/'+str(level_number)+'/') if not os.path.exists(level_folder): os.makedirs(level_folder) @@ -71,7 +69,7 @@ def levelDelete(request): data = request.data['params']['rowData'] level = Levels.objects.get(id=data['id']) level.delete() - level_del_dir = os.path.join(BASE_DIR, 'static/data/Standards/'+str(data['levelNumber'])+'/') + level_del_dir = os.path.join(BASE_DIR, 'media/data/Standards/'+str(data['levelNumber'])+'/') shutil.rmtree(level_del_dir) return Response('') diff --git a/db.sqlite3 b/db.sqlite3 index 6565cb2..9c7d191 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/guide.txt b/guide.txt index eff80b4..5812e24 100644 --- a/guide.txt +++ b/guide.txt @@ -68,4 +68,27 @@ python -m spacy download en_core_web_sm Options FollowSymlinks - \ No newline at end of file + + +### +elasticsearch + +Authentication and authorization are enabled. +TLS for the transport and HTTP layers is enabled and configured. + +The generated password for the elastic built-in superuser is : ZyRJLXmUYNlTSza8tMLk + +If this node should join an existing cluster, you can reconfigure this with +'/usr/share/elasticsearch/bin/elasticsearch-reconfigure-node --enrollment-token ' +after creating an enrollment token on your existing cluster. + +You can complete the following actions at any time: + +Reset the password of the elastic built-in superuser with +'/usr/share/elasticsearch/bin/elasticsearch-reset-password -u elastic'. + +Generate an enrollment token for Kibana instances with + '/usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana'. + +Generate an enrollment token for Elasticsearch nodes with +'/usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s node'. diff --git a/iddrs_api/__pycache__/settings.cpython-310.pyc b/iddrs_api/__pycache__/settings.cpython-310.pyc index 5c546a0..0882bd5 100644 Binary files a/iddrs_api/__pycache__/settings.cpython-310.pyc and b/iddrs_api/__pycache__/settings.cpython-310.pyc differ diff --git a/iddrs_api/settings.py b/iddrs_api/settings.py index 9314001..e17b1b4 100644 --- a/iddrs_api/settings.py +++ b/iddrs_api/settings.py @@ -197,7 +197,11 @@ USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/4.1/howto/static-files/ -STATIC_URL = 'static/' +STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'static') + +MEDIA_URL = '/media/' +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') # Default primary key field type # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field diff --git a/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.docx b/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.docx new file mode 100644 index 0000000..d8f1a55 Binary files /dev/null and b/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.docx differ diff --git a/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.pdf b/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.pdf new file mode 100644 index 0000000..081d077 Binary files /dev/null and b/media/data/Standards/2/IDDRS_2.10_The_UN_Approach_to_DDR_validated_copy-edit_clean_19_Nov_2019.pdf differ diff --git a/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.docx b/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.docx new file mode 100644 index 0000000..084a804 Binary files /dev/null and b/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.docx differ diff --git a/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.pdf b/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.pdf new file mode 100644 index 0000000..1e9ee52 Binary files /dev/null and b/media/data/Standards/3/IDDRS_3.10_Integrated_DDR_Planning_validated_copy-edit_clean_23_Mar_2022.pdf differ diff --git a/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_Apr_2023.pdf b/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_Apr_2023.pdf new file mode 100644 index 0000000..da94cef Binary files /dev/null and b/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_Apr_2023.pdf differ diff --git a/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_oGLc9kf.docx b/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_oGLc9kf.docx new file mode 100644 index 0000000..f933550 Binary files /dev/null and b/media/data/Standards/6/IDDRS_6.10_DDR_and_Security_Sector_Reform_validated_copy-edit_clean_10_oGLc9kf.docx differ diff --git a/media/data/data.json b/media/data/data.json new file mode 100644 index 0000000..19a7898 --- /dev/null +++ b/media/data/data.json @@ -0,0 +1,2263 @@ +[ + { + "ID": "b2162b57-13b3-47ef-afee-49a874039f33", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction: The rationale and mandate for integrated DDR 4. The UN DDR approach 5. UN DDR in mission and non-mission settings \t5.1 DDR in mission settings \t5.2 DDR in non-mission settings 6. When is DDR appropriate? 6.1 When the preconditions for a DDR programme are not in place 6.2 When the preconditions for a DDR programme are in place 7. Who is DDR for? 8. What principles guide UN DDR? 8.1 Voluntary 8.2 People-centred 8.3 Gender-responsive and inclusive 8.4 Conflict sensitive 8.5 Context specific 8.6 Flexible, sustainable and transparent 8.7 Nationally and locally owned 8.8 Regionally supported 8.9 Integrated 8.10 Well planned Annex A: Abbreviations", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "788880cf-b949-4dd7-8d73-77a89dd92172", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "Summary\t Integrated disarmament, demobilization and reintegration (DDR) is part of the United Nations (UN) system\u2019s multidimensional approach that contributes to the entire peace continuum, from prevention, conflict resolution and peacekeeping, to peacebuilding and development. Integrated DDR processes are made up of various combinations of: DDR programmes; DDR-related tools; Reintegration support, including when complementing DDR-related tools. DDR practitioners select the most appropriate of these measures to be applied on the basis of a thorough analysis of the particular context. Coordination is key to integrated DDR and is predicated on mechanisms that guarantee synergy and common purpose among all UN actors. The Integrated DDR Standards (IDDRS) contained in this document are a compilation of the UN\u2019s knowledge and experience in this field. They show how integrated DDR processes can contribute to preventing conflict escalation, supporting political processes, building security, protecting civilians, promoting gender equality and addressing its root causes, reconstructing the social fabric and developing human capacity. Integrated DDR is at the heart of peacebuilding and aims to contribute to long-term security and stability. Within the UN, integrated DDR takes place in partnership with Member States in both mission and non-mission settings, including in peace operations where they are mandated, and with the cooperation of agencies, funds and programmes. In countries and regions where integrated DDR processes are implemented, there should be a focus on capacity-building at the regional, national and local levels in order to encourage sustainable regional, national and/or local ownership and other peacebuilding measures. Integrated DDR processes should work towards sustaining peace. Whereas peacebuilding activities are typically understood as a response to conflict once it has already broken out, the sustaining peace approach recognizes the need to work along the entire peace continuum and towards the prevention of conflict before it occurs. In this way the UN should support those capacities, institutions and attitudes that help communities to resolve conflicts peacefully. The implications of working along the peace continuum are particularly important for the provision of reintegration support. Now, as part of the sustaining peace approach those individuals leaving armed groups can be supported not only in post-conflict situations, but also during conflict escalation and ongoing conflict. Community-based approaches to reintegration support, in particular, are well positioned to operationalize the sustaining peace approach. They address the needs of former combatants, persons formerly associated with armed forces and groups, and receiving communities, while necessitating the multidimensional/sectoral expertise of several UN and regional actors across the humanitarian-peace-development nexus (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Integrated DDR should also be characterized by flexibility, including in funding structures, to adapt quickly to the dynamic and often volatile conflict and post-conflict environment. DDR programmes, DDR-related tools and reintegration support, in whichever combination they are implemented, shall be synchronized through integrated coordination mechanisms, and carefully monitored and evaluated for effectiveness and with sensitivity to conflict dynamics and potential unintended effects. Five categories of people should be taken into consideration in integrated DDR processes as participants or beneficiaries, depending on the context: 1)\tmembers of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); 2)\tabductees or victims; 3)\tdependents/families; 4)\tcivilian returnees or \u2018self-demobilized\u2019; 5)\tcommunity members. In each of these five categories, consideration should be given to addressing the specific needs and capacities of women, youth, children, persons with disabilities, and persons with chronic illnesses. In particular, the unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. Disarmament and other DDR-related weapons control activities aim to reduce the number of illicit weapons, ammunition and explosives in circulation and are important elements in responding to and addressing the drivers of conflict. Demobilization, including the provision of tailored reinsertion packages, is crucial in discharging combatants and those in support roles from the structures of armed forces and groups. Furthermore, DDR programmes emphasize the developmental impact of sustainable and inclusive reintegration and its positive effect on the consolidation of long-lasting peace and security. Lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. When these preconditions are in place, a DDR programme provides a common results framework for the coordination, management and implementation of DDR by national Governments with support from the UN system and regional and local stakeholders. A DDR programme establishes the outcomes, outputs, activities and inputs required, organizes costing requirements into a budget, and sets the monitoring and evaluation framework, including by identifying indicators, targets and milestones. In addition to DDR programmes, the UN has developed a set of DDR-related tools aiming to provide immediate and targeted responses. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation, and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may also be provided by DDR practitioners in compliance with international standards. The specific aims of DDR-related tools vary according to the context and can contribute to broader political and peacebuilding efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to delimit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN approach to integrated DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In these contexts, reintegration may take place alongside/following DDR-related tools, or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes also aim to contribute to preventing further recruitment and to sustaining peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. In this context, exits from armed groups and the reintegration of adult ex-combatants can and should be supported at all times, even in the absence of a DDR programme. Support to sustainable reintegration that addresses the needs of affected groups and harnesses their capacities, either as part of DDR programmes or not, requires a thorough understanding of the drivers of conflict, the specific needs of men, women, children and youth, their coping mechanisms and the opportunities for peace. Reintegration assistance should ensure the transition from individually focused to community approaches. This is so that resources can be applied to the benefit of the community in a balanced manner minimizing the stigmatization of former armed group members and contributing to reconciliation and reconstruction of the social fabric. In non-mission contexts, where funding mechanisms are not linked to peacekeeping assessed budgets, the use of DDR-related tools should, even in the initial planning phases, be coordinated with community-based reintegration support in order to ensure sustainability. Together, DDR programmes, DDR-related tools, and reintegration support provide a menu of options for DDR practitioners. If the aforementioned preconditions are in place, DDR-related tools may be used before, after or alongside a DDR programme. DDR-related tools and/or reintegration support may also be applied in the absence of preconditions and/or following the determination that a DDR programme is not appropriate for the context. In these cases, DDR-related tools may serve to build trust among the parties and contribute to a secure environment, possibly even paving the way for a DDR programme in the future (if still necessary). Notably, if DDR-related tools are applied with the explicit intent of creating the preconditions for a DDR programme, a combination of top-down and bottom-up measures (e.g., CVR coupled with DDR support to mediation) may be required. When the preconditions for a DDR programme are not in place, all DDR-related tools and support to reintegration efforts shall be implemented in line with the applicable legal framework and the key principles of integrated DDR as defined in these standards.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "8a1c185b-658e-44a4-9874-1b5cbb9bfa54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "1. Module scope and objectives\t This module outlines the reasons behind integrated DDR, defines the elements that make up DDR programmes as agreed by the UN General Assembly, and establishes how the UN views integrated DDR processes. The module also defines the UN approach to integrated DDR for both mission and non-mission settings, which is: voluntary; people-centred; gender-responsive and inclusive; conflict-sensitive; context-specific; flexible, accountable and transparent; nationally and locally owned; regionally supported; integrated; and well planned.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "9a43673d-49be-4cf8-96b9-68ad73e8059f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 5, + "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. A DDR programme contains the elements set out by the Secretary-General in his May 2005 note to the General Assembly (A/C.5/59/31). (See box below.) These definitions are also used for drawing up budgets where UN Member States have agreed to fund the disarmament and demobilization (including reinsertion) phases of DDR programmes from the peacekeeping assessed budget. These budgetary aspects are also reflected in a General Assembly resolution on cross-cutting issues, including DDR (A/RES/59/296). Further reviews of both the United Nations Peacebuilding Architecture and the Women, Peace and Security Agenda refer to the full, unencumbered participation of women in all phases of DDR programmes, as ex-combatants or persons formerly associated with armed forces and groups. DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes or when the preconditions for DDR-programmes are not in place. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may be provided by DDR practitioners in compliance with international standards. Reintegration support, including when complementing DDR-related tools: The UN should provide support to the reintegration of former members of armed forces and groups not only as part of DDR programmes, but also in the absence of such programmes, during conflict escalation, conflict and post-conflict. In these contexts, reintegration may take place alongside/following DDR-related tools or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent further recruitment and sustain peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. Integrated DDR processes are made up of different combinations of DDR programmes, DDR-related tools and reintegration support, including when complementing DDR-related tools. These different measures should be applied in an integrated manner, with joint mechanisms that guarantee coordination and synergy among all UN actors. The UN shall use the concept and abbreviation \u2018DDR\u2019 as a comprehensive term referring to integrated DDR, and including DDR programmes, DDR-related tools and reintegration support. Importantly, integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "a7385bc0-47ea-4f14-ba0b-728ce960b974", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "3. Introduction: The rationale and mandate for integrated DDR As DDR is implemented in partnership with Member States and draws on the expertise of a wide range of stakeholders, an integrated approach is vital to ensure that all actors are working in harmony towards the same end. Past experiences have highlighted the need for those involved in planning and implementing DDR and monitoring its impacts to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources (see IDDRS 3.10 on Integrated DDR Planning). The UN\u2019s integrated approach to DDR is guided by several policies and agendas that frame the UN\u2019s work on peace, security and development: Echoing the Brahimi Report (A/55/305; S/2000/809), the High-Level Independent Panel on Peace Operations (HIPPO) in June 2015 recommended a common and realistic understanding of mandates, including required capabilities and standards, to improve the design and delivery of peace operations. Integrated DDR is part of this effort, based on joint analysis, comprehensive approaches, coordinated policies, DDR programmes, DDR-related tools and reintegration support. The Sustaining Peace Approach \u2013 manifested in the General Assembly and Security Council twin resolutions on the Review of the United Nations Peacebuilding Architecture (General Assembly resolution 70/262 and Security Council resolution 2282 [2016]) \u2013 underscores the mutually reinforcing relationship between prevention and sustaining peace, while recognizing that effective peacebuilding must involve the entire UN system. It also emphasizes the importance of joint analysis and effective strategic planning across the UN system in its long-term engagement with conflict-affected countries, and, where appropriate, in cooperation and coordination with regional and sub-regional organizations as well as international financial institutions. Integrated DDR also needs to be understood as a concrete and direct contribution to the implementation of the Sustainable Development Goals (SDGs). The SDGs are underpinned by the principle of leaving no one behind. The 2030 Agenda for Sustainable Development explicitly links development to peace and security, while SDG 16 is focused on the promotion of peaceful, just and inclusive societies. Specifically, integrated DDR contributes to the implementation of: SDG 16.1: Significantly reduce all forms of violence and related death rates everywhere. SDG 16.4: By 2030, significantly reduce illicit financial and arms flows, strengthen the recovery and return of stolen assets and combat all forms of organized crime. SDG 8.7: Take immediate steps to \u2026 secure the prohibition and elimination of child labour, including recruitment and use of child soldiers, and by 2015 end child labour in all its forms. Gender-responsive DDR also contributes to: SDG 5.1: End all forms of discrimination against women. SDG 5.2: Eliminate all forms of violence against all women and girls in public and private spaces, including trafficking, sexual and other types of exploitation. SDG 5.6: Ensure universal access to sexual and reproductive health and reproductive rights. The Quadrennial Comprehensive Policy Review (A/71/243, 21 December 2016, para. 14), states that \u201ca comprehensive whole-of-system response, including greater cooperation and complementarity among development, disaster risk reduction, humanitarian action and sustaining peace, is fundamental to most efficiently and effectively addressing needs and attaining the Sustainable Development Goals.\u201d Moreover, integrated DDR often takes place amid protracted humanitarian contexts which, since the 2016 World Humanitarian Summit Commitment to Action, have been framed through various initiatives that recognize the need to strengthen the humanitarian, development and peace nexus. These initiatives \u2013 such as the Grand Bargain, the New Way of Working (NWoW), and the Global Compact on Refugees \u2013 all call for humanitarian, development and peace stakeholders to identify shared priorities or collective outcomes that can serve as a common framework to guide respective planning processes. In contexts where the UN system implements these approaches, integrated DDR processes can contribute to the achievement of these collective outcomes. In all contexts \u2013 humanitarian, development, and peacebuilding \u2013 upholding human rights, including gender equality, is pivotal to UN-supported integrated DDR. The Universal Declaration of Human Rights (UDHR, UNGA 217, 1948), the International Covenant on Civil and Political Rights, and the International Covenant on Economic, Social and Cultural Rights form the International Bill of Human Rights. These fundamental instruments, combined with various treaties and conventions, including (but not limited to) the Convention on the Elimination of Discrimination Against Women (CEDAW), the\u00a0International Convention on the Elimination of All Forms of Racial Discrimination, the\u00a0United Nations Convention on the Rights of the Child, and the\u00a0United Nations Convention Against Torture, establish the obligations of Governments to promote and protect human rights and the fundamental freedoms of individuals and groups, applicable throughout integrated DDR. The work of the United Nations in all contexts is conducted under the auspices of upholding this body of law, promoting and protecting the rights of DDR participants and the communities into which they integrate, and assisting States in carrying out their responsibilities. \tAt the same time, the Secretary-General\u2019s Action for Peacekeeping (A4P) initiative, launched in March 2018 as the core agenda for peacekeeping reform, seeks to refocus peacekeeping with realistic expectations, make peacekeeping missions stronger and safer, and mobilize greater support for political solutions and for well-structured, well-equipped and well-trained forces. In relation to the need for integrated DDR solutions, the A4P Declaration of Shared Commitment, shared by the Secretary-General on 16 August 2018, calls for the inclusion and engagement of civil society and all segments of the local population in peacekeeping mandate implementation. In addition, it includes commitments related to strengthening national ownership and capacity, ensuring integrated analysis and planning, and seeking greater coherence among UN system actors, including through joint platforms such as the Global Focal Point on Police, Justice and Corrections. Relatedly, the Secretary-General\u2019s Agenda for Disarmament, launched in May 2018, also calls for \u201cdisarmament that saves lives\u201d, including new efforts to rein in the use of explosive weapons in populated areas \u2013 through common standards, the collection of data on collateral harm, and the sharing of policy and practice. The UN General Assembly and the Security Council have called on all parts of the UN system to promote gender equality and the empowerment of women within their mandates, ensuring that commitments made are translated into progress on the ground and gender policies in the IDDRS. More concretely, UNSCR 1325 (2000) encourages all those involved in the planning of disarmament, demobilization and reintegration to consider the distinct needs of female and male ex-combatants and to take into account the needs of their dependents. The Global Study on 1325, reflected in UNSCR 2242 (2015), also recommends that mission planning include gender-responsive DDR programmes. Furthermore, Security Council Resolution 2282 (2016), the Review of the United Nations Peacebuilding Architecture, the Review of Women, Peace and Security, and the High-Level Panel on Peace Operations (HIPPO) note the importance of women\u2019s roles in sustaining peace. UNSCR 2282 highlights the importance of women\u2019s leadership and participation in conflict prevention, resolution and peacebuilding, recognizing the continued need to increase the representation of women at all decision-making levels, including in the negotiation and implementation of DDR programmes. UN General Assembly resolution 70/304 calls for women\u2019s participation as negotiators in peace processes, including those incorporating DDR provisions, while the Secretary-General\u2019s Seven Point Action Plan on Gender-Responsive Peacebuilding calls for 15% of funding in support of post-conflict peacebuilding projects to be earmarked for women\u2019s empowerment and gender-equality programming. Finally, the Secretary-General\u2019s Agenda for Disarmament calls on States to incorporate gender perspectives into the development of national legislation and policies on disarmament and arms control \u2013 in particular, the gendered aspects of ownership, use and misuse of arms; the differentiated impacts of weapons on women and men; and the ways in which gender roles can shape arms control and disarmament policies and practices.", + "Can": true, + "May": true, + "Shall": false, + "Should": false, + "Must": true + }, + { + "ID": "f735bd7e-5639-4cba-9769-11dc5c1bc68e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "4. The UN DDR approach\t The UN\u2019s integrated approach to DDR is applicable to mission and non-mission contexts, and emphasizes the role of DDR programmes, DDR-related tools, and reintegration support, including when complementing DDR-related tools. The unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a range of activities falling under the operational categories of disarmament, demobilization and reintegration. (See definitions above.) These programmes are typically top-down and are designed to implement the terms of a peace agreement between armed groups and the Government. The UN views DDR programmes as an integral part of peacebuilding efforts. DDR programmes focus on the post-conflict security problem that arises when combatants are left without livelihoods and support networks during the vital period stretching from conflict to peace, recovery and development. DDR programmes also help to build national capacity for long-term reintegration and human security, and they recognize the need to contribute to the right to reparation and to guarantees of non-repetition (see IDDRS 6.20 on DDR and Transitional Justice). DDR programmes are complex endeavours, with political, military, security, humanitarian and socio-economic dimensions. The establishment of a DDR programme is usually agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. This provides the political, policy and operational framework for the DDR programme. More generally, lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. DDR programmes provide a framework for their coordination, management and implementation by national Governments with support from the UN system, international financial institutions, and regional stakeholders. They establish the expected outcomes, outputs and activities required, organize costing requirements into a budget, and set the monitoring and evaluation framework by identifying indicators, targets and milestones. The UN\u2019s integrated approach to DDR acknowledges that planning for DDR programmes shall be initiated as early as possible, even before a ceasefire and/or peace agreement is signed, before sufficient trust is built in the peace process, and before minimum conditions of security are reached that enable the parties to the conflict to engage willingly in DDR (see IDDRS 3.10 on Integrated DDR Planning). DDR programmes alone cannot resolve conflict or prevent violence, and such programmes need to be firmly anchored in an overall political and peacebuilding strategy. However, DDR programmes can contribute to security and stability so that other elements of a political and peacebuilding strategy, such as elections and power sharing, weapons and ammunition management, security sector reform (SSR) and rule of law reform, can proceed (see IDDRS 6.10 on DDR and SSR). In recent years, DDR practitioners have increasingly been deployed in settings where the preconditions for DDR programmes are not in place. In some contexts, a peace agreement may have been signed but the armed groups have lost trust in the peace process or reneged on the terms of the deal. In other settings, where there are multiple armed groups, some may sign on to a peace agreement while others do not. In contexts of violent extremism conducive to terrorism, peace agreements are only a remote possibility. It is not solely the lack of ceasefire agreements or peace processes that makes integrated DDR more challenging, but also the proliferation and diversification of armed groups, including some with links to transnational networks and organized crime. The phenomenon of violent extremism, as and when conducive to terrorism, creates legal and operational challenges for integrated DDR and, as a result, requires specific guidance. (For legal guidance pertinent to the UN approach to DDR, see IDDRS 2.11 on The Legal Framework for UN DDR.) Support to programmes for individuals leaving armed groups labelled and/or designated as terrorist organizations, among other things, should be predicated on a comprehensive screening process based on international standards, including international human rights obligations and national justice frameworks. There is no universally agreed upon definition of \u2018terrorism\u2019, nor associated terms such as \u2018violent extremism\u2019. Nevertheless, the 19 international instruments on terrorism agree on definitions of terrorist acts/offenses, which are binding on Member States that are party to these conventions, as well as Security Council resolutions that describe terrorist acts. Practitioners should have a solid grounding in the evolving international counter-terrorism framework as established by the United Nations Global Counter-Terrorism Strategy, relevant General Assembly and Security Council resolutions and mandates, and the Secretary-General\u2019s Plan of Action to Prevent Violent Extremism. In response to these challenges, DDR practitioners may contribute to stabilization initiatives through the use of DDR-related tools. The specific aims of DDR-related tools will vary according to the context and can contribute to broader political and peacebuilding efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP), and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to delimit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN\u2019s integrated approach to DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In line with the sustaining peace approach, this means that the UN should provide long-term support to reintegration that takes place in the absence of DDR programmes during conflict escalation, ongoing conflict and post-conflict reconstruction (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). The first goal of this support should be to facilitate the sustainable reintegration of those leaving armed forces and groups. However, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent future recruitment and sustain peace. In this regard, opportunities should be seized to prevent relapse into conflict (or any form of violence), including by tackling root causes and understanding peace dynamics. Appropriate linkages should also be established with local and national stabilization, recovery and development plans. Reintegration support as part of sustaining peace is not only an integral part of DDR programmes, it also follows SSR where armed forces or the police are rightsized; complements DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups labelled and/or designated as terrorist organizations. In sum, in countries in active armed conflict or emerging from armed conflict, DDR programmes, related tools and reintegration support contribute to stabilization efforts, to addressing gender inequalities exacerbated by conflict, and to creating an environment in which a peace process, political and social reconciliation, access to livelihoods and sustainable decent work, and long-term development can take root. When the preconditions for a DDR programme are in place, the DDR of combatants from both armed forces and groups can help to establish a climate of confidence and security, a necessity for recovery activities to begin, which can directly yield tangible benefits for the population. When the preconditions for a DDR programme are not in place, practitioners may choose from a set of DDR-related tools and measures in support of reintegration that can contribute to stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. As such, integrated DDR processes should be seen as integral parts of efforts to consolidate peace and promote stability, and not merely as a set of sequenced technical programmes and activities. Overall, integrated DDR has evolved beyond support to national, linear and sequenced DDR programmes, to become a process addressing the entire peace continuum in both mission and non-mission contexts, at regional, national and local levels.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "daa371cd-90be-4ba4-a893-16770d411e13", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 12, + "Paragraph": "5. UN DDR in mission and non-mission settings The UN has been involved in integrated DDR across the peace continuum since the late 1980s. During the past 25 years, the UN has amassed considerable experience and knowledge of the coordination, design, implementation, financing, and monitoring and evaluation of DDR programmes. Over the past 10 years the UN has also gained similar experience in the use of DDR-related tools and reintegration support when the preconditions for DDR programmes are not present. Integrated DDR originates from various parts of the UN\u2019s core mandate, as set out in the Charter of the UN, particularly the areas of peace and security, economic and social development, human rights and humanitarian assistance. UN departments, agencies, programmes and funds are uniquely able to support integrated DDR processes both in mission settings, where peace operations are in place, and in non-mission settings, where there is no peace operation present, providing breadth of scope, neutrality, impartiality and capacity-building through the sharing of technical DDR skills.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "e8479ae3-9b2f-44c5-9b3c-14511c35d5db", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 12, + "Paragraph": "5.1 DDR in mission settings Mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Where peace operations are mandated to manage and resolve an actual or potential conflict within States, DDR is generally mandated through a UN Security Council resolution, ideally within the framework of a ceasefire and/or a comprehensive peace agreement with specific provisions on DDR. Decision-making and accountability rest with the Special Representative or Special Envoy of the Secretary-General. Missions with a DDR mandate usually include a dedicated DDR component to support the design and implementation of a nationally led DDR programme. When the preconditions for a DDR programme are not in place, the Security Council may also mandate UN peace operations to implement specific DDR-related tools, such as CVR, to support the creation of a conducive environment for a DDR programme. These types of DDR-related tools can also be designed and implemented to contribute to other mandated priorities such as the protection of civilians, stabilization and support to the overall peace process. Integrated disarmament, demobilization (including reinsertion) and other DDR-related tools (except those covering reintegration support) fall under the responsibility of the UN peace operation\u2019s DDR component. The reintegration component will be supported and/or undertaken in an integrated manner very often by relevant agencies, funds and programmes within the United Nations Country Team (UNCT), as well as international financial institutions, under the leadership of the Deputy Special Representative of the Secretary-General (DSRSG)/Humanitarian Coordinator (HC)/Resident Coordinator (RC), who will designate lead agency(ies). The DDR mission component shall therefore work in close coordination with the UNCT. The UN DSRSG/HC/RC should establish a UN DDR Working Group at the country level with co-chairs to be defined, as appropriate, to coordinate the contributions of the UNCT and international financial institutions to integrated DDR. While UN military and police contingents provide a minimum level of security, support from other mission components may include communications, gender equality, women\u2019s empowerment, and youth and child protection. With regard to special political missions and good offices engagements, DDR implementation structures and partnerships may need to be adjusted to the mission\u2019s composition as the mandate evolves. This adjustment can take account of needs at the country level, most notably with regard to the size and capacities of the DDR component, uniformed personnel and other relevant technical expertise. In the case of peace operations, the Security Council mandate also forms the basis for assessed funding for all activities related to disarmament, demobilization (including reinsertion) and DDR-related tools (except those covering reintegration support). Fundraising for reintegration assistance and other activities needs to be conducted by Governments and/or regional organizations with support from United Nations peace operations, agencies, funds and programmes, bilateral donors and relevant international financial institutions. Regarding special political missions and good offices engagements, support to integrated DDR planning and implementation may require extra-budgetary funding in the form of voluntary contributions and the establishment of alternative financial management structures, such as a dedicated multi-donor trust fund.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "6317b2fc-5893-4507-9622-2b2a40de0eeb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "5.2 DDR in non-mission settings Non-mission settings are those situations in which there is no peace operation deployed to a country, either through peacekeeping, political missions or good offices engagements, by either the UN or regional organizations. In countries where there is no United Nations peace operation mandated by the Security Council, UN DDR support will be provided when either a national Government and/or UN RC requests assistance. The disarmament and demobilization components of a DDR programme will be undertaken by national institutions with advice and technical support from relevant UN departments, agencies, programmes and funds, the UNCT, regional organizations and bilateral actors. The reintegration component will be supported and/or implemented by the UNCT and relevant international financial institutions in an integrated manner. When the preconditions for a DDR programme are not in place, the implementation of specific DDR-related tools, such as CVR, and/or reintegration support, may be considered. The alignment of CVR initiatives in non-mission contexts with reintegration assistance is essential. Decision-making and accountability for UN-supported DDR rest, in this context, with the UN RC, who will identify one or more UN lead agency(ies) in the UNCT based on in-country capacity and expertise. The UN RC should establish a UN DDR Working Group co-chaired by the lead agency(ies) at the country level to coordinate the contribution of the UNCT to integrated DDR, including on issues related to gender equality, women\u2019s empowerment, youth and child protection, and support to persons with disabilities. DDR programmes, DDR-related tools and reintegration support, where applicable, will require the allocation of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management structures, such as a dedicated multi-donor trust fund or catalytic funding provided by the Peacebuilding Fund (PBF).", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "363fedeb-9c8f-4b2a-8c2d-b5a7e63a18ec", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "6. When is DDR appropriate? Violent conflicts do not always completely cease when a political settlement is reached or a peace agreement is signed. There remains a real danger that violence will flare up again during the immediate post-conflict period, because putting right the political, security, social and economic problems and other root causes of war is a long-term project. Furthermore, peace operations are often mandated in contexts where an agreement is yet to be reached or where a peace process is yet to be initiated or is only partially initiated. In non-mission contexts, requests from the Government for the UN to support DDR are made either when ceasefires are reached or when a peace agreement or a comprehensive peace agreement is signed. This is why practitioners should decide whether DDR programmes, DDR-related tools and/or reintegration support constitute the most appropriate response to a particular situation. A DDR programme will only be appropriate when the preconditions referred to above are in place.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "784fe92e-8828-4dc0-83e3-4a04ed16f1a0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 18, + "Paragraph": "6.1 When the preconditions for a DDR programme are not in place When the preconditions for a DDR programme are not in place, the reintegration of former combatants and persons formerly associated with armed forces and groups may be supported in line with the sustaining peace approach, i.e., during conflict escalation, conflict and post-conflict. Furthermore, practitioners may choose from a menu of DDR-related tools. (See table above.) Unlike DDR programmes, DDR-related tools are not designed to implement the terms of a peace agreement. Instead, when the preconditions for a DDR-programme are not in place, DDR-related tools may be used in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "63927c23-6577-42bd-b4fb-2cdd0e2d694f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 18, + "Paragraph": "6.2 When the preconditions for a DDR programme are in place When the preconditions are in place, the UN may support the establishment of DDR programmes. Other DDR-related tools can also be implemented before, after or alongside DDR programmes, as complementary measures (see table above). The UN may employ or support a variety of DDR programming elements adapted to suit each context. These may include: The disbanding of armed groups: Governments may request assistance to disband armed groups. The establishment of a DDR programme is agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. Trust and commitment by the parties to the implementation of an agreement and minimum conditions of security are essential for the success of a DDR programme. Administratively, there is little difference between DDR programmes for armed forces and armed groups. Both may require the full registration of weapons and personnel, followed by the collection of information, referral and counselling that are needed before effective reintegration programmes can be put in place. The rightsizing of armed forces or police: Governments may request assistance to downsize or restructure their armies or police and supporting institutional infrastructure (salaries, benefits, basic services, etc.). Such processes contribute to security sector reform (SSR) (see IDDRS 6.10 on DDR and Security Sector Reform). DDR practitioners should work in close collaboration with SSR experts while planning reintegration support to former members of armed forces. The repatriation of foreign combatants and associated groups: Considering the regional dimensions of conflict, Governments may agree to assistance to repatriation. DDR programmes may need to become involved in repatriating national combatants and their civilian family members, as well as children associated with armed forces and groups who may have crossed an international border. Such repatriation needs to be in accordance with the principle of non-refoulement, as set out in international humanitarian, human rights and refugee law (see IDDRS 2.11 on The Legal Framework for UN DDR). While DDR programmes are primarily used to address the security challenges posed by members of armed forces and groups, provisions should be made for the inclusion of other groups (including civilians and youth at risk), depending on resources and local circumstances. National institutions should be supported to determine the policy on direct benefits and reintegration assistance during a DDR programme. Civilians and civil society groups in communities to which members of the abovementioned groups will return should be consulted during the planning and design phase of DDR programmes, as well as informed and supported in order to assist them to receive ex-combatants and their dependents/families during the reintegration phase.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "78f78e25-5d55-436a-9780-f5deeda93f38", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "7. Who is DDR for? Five categories of people should be taken into consideration, as participants and beneficiaries, in integrated DDR processes. This will depend on the context, and the particular combination of DDR programmes, DDR-related tools, and reintegration support in use: 1)\tmembers of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); 2)\tabductees/victims; 3)\tdependents/families; 4)\tcivilian returnees/\u2019self-demobilized\u2019; 5)\tcommunity members. Consideration should be given to addressing the specific needs of women, youth, children, persons with disabilities, and persons with chronic illnesses in each of these five categories. National actors, such as Governments, political parties, the military, signatory and non-signatory armed groups, non-governmental organizations, civil society organizations and the media are all stakeholders in integrated DDR processes along with international actors.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "51e140b1-0b6e-4905-8e96-68c4a7d242db", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8. What principles guide UN DDR? All UN DDR programmes, DDR-related tools, and reintegration support shall be voluntary, people-centred, gender-responsive and inclusive, conflict sensitive, context specific, flexible, accountable and transparent, nationally and locally owned, regionally supported, integrated and well planned.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "0a7c0fa5-6b45-46a4-b517-64acafa78aac", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 19, + "Paragraph": "8.1 Voluntary Integrated DDR shall be a voluntary process for both armed forces and groups, both as organizations and individual (ex)combatants. Groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants in nationally, locally, or privately supported efforts is arguably involuntary, for example as a result of their capture on the battlefield or their being forced into a DDR programme under duress. Integrated DDR should not be conflated with military operations or counter-insurgency strategies. Although the UN does not generally engage in detention operations and DDR has traditionally been a voluntary process, the nature of conflict environments and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism has increased the likelihood that the UN and other actors engaging in DDR may be faced with detention-related dilemmas. DDR practitioners should therefore pay particular attention to such questions when operating in complex conflict environments and seek legal advice if confronted with surrendered or captured combatants in overt military operations, or if there are any concerns regarding the voluntariness of persons participating in DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, call for Member States to bring terrorists to justice and oblige national authorities to ensure the prosecution of suspected terrorists as appropriate (see IDDRS 2.11 on The Legal Framework for UN DDR).", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "e566fc1d-efc4-4980-992b-c78df93ca325", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 20, + "Paragraph": "8.2.1. Criteria for participation/eligibility Determining the criteria that define which people are eligible to participate in integrated DDR, particularly in situations where mainly armed groups are involved, is vital if aims are to be achieved. In DDR programmes, eligibility criteria must be carefully designed and ready for use in the disarmament and demobilization stages. DDR programmes are aimed at combatants and persons associated with armed forces and groups. These groups may be composed of different categories of people who have participated in the conflict within armed forces and groups such as abductees/victims or dependents/families. In instances where the preconditions for a DDR programme are not in place, or where combatants are ineligible for DDR programmes, DDR-related tools, such as CVR, or support to reintegration may be provided. Determination of eligibility for these activities should be undertaken by relevant national and local authorities with support from UN missions, agencies, programmes and funds as appropriate. Armed groups in particular have a variety of structures \u2014 rebel groups, armed gangs, etc. In order to provide the best assistance, operational and implementation strategies that deal with their specific needs should be adopted.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "47c7000c-0e7c-4373-9ac4-b4c9ad1acd6f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 20, + "Paragraph": "8.2.2. Unconditional release and protection of children The unconditional and immediate release of children associated with armed forces and groups must be a priority, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. UN-supported DDR interventions shall not be allowed to encourage the recruitment of children into armed forces and groups in any way, especially by commanders trying to increase the number of combatants entering DDR programmes in order to profit from assistance provided to combatants. When DDR programmes, DDR-related tools and reintegration support are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. Children will then be supported to demobilize and reintegrate into families and communities (see IDDRS 5.30 on Children and DDR). Only child protection practitioners should interview children associated with armed forces and groups.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "75c0ff09-a7b7-424e-9ad9-195638f5d838", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "UN-supported integrated DDR processes promote the human rights of participants and the communities into which they integrate, and are conducted in line with international humanitarian, human rights and refugee law. The UN and its partners should be neutral, transparent and impartial, and should not take sides in any conflict or in political, racial, religious or ideological controversies, or give preferential treatment to different parties taking part in DDR. Neutrality within a rights-based approach should not, however, prevent UN personnel from protesting against or documenting human rights violations or taking some other action (e.g., advocacy, simple presence, political steps, local negotiations, etc.) to prevent them. Under the UN's Human Rights Due Diligence Policy (HRDDP), providers of support have a responsibility to monitor the related human rights context, to suspend support under certain circumstances and to engage with national authorities towards addressing violations. Where one or more parties or individuals violate agreements and undertakings, the UN can take appropriate remedial action and/or exclude individuals from DDR. Humanitarian aid must be delivered to all those who are suffering, according to their need, and human rights provide the framework on which an assessment of needs is based. However, mechanisms must also be designed to prevent those who have committed violations of human rights from going unpunished by ensuring that DDR programmes, related tools and reintegration support do not operate as a reward system for the worst violators. In many post-conflict situations, there is often a tension between reconciliation and justice, but efforts must be made to ensure that serious violations of human rights and humanitarian law by ex-combatants and their supporters are dealt with through appropriate national and international legal and/or transitional justice mechanisms. Children released from their association with armed forces and groups who have committed war crimes and mass violations of human rights may also be criminally responsible under national law, though any criminal responsibility must be in accordance with international juvenile justice standards and the International Criminal Court Policy on Children (see IDDRS 5.20 on Youth and DDR, and IDDRS 5.30 on Children and DDR). UN-supported DDR interventions should take into consideration local and international mechanisms for achieving justice and accountability, as well as respect for the rule of law, including any accountability, justice and reconciliation mechanisms that may be established with respect to crimes committed in a particular Member State. These can take various forms, depending on the specificities of the local context.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "23a5a913-56b7-459c-8f5f-24b2e3e82f80", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.3 Gender responsive and inclusive Like men and boys, women and girls are likely to have played many different roles in armed forces and groups, as fighters, supporters, wives or sex slaves, messengers and cooks. The design and implementation of integrated DDR processes should aim to address the specific needs of women and girls, as well as men and boys, taking into account these different experiences, roles, capacities and responsibilities acquired during and after conflicts. Specific measures should be put in place to ensure the equal and meaningful participation of women in all stages of integrated DDR \u2014 from the negotiation of DDR provisions in peace agreements and the establishment of national institutions, to CVR and community-based reintegration support (see IDDRS 5.10 on Gender and DDR). Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of integrated DDR processes. The eligibility criteria for DDR shall not discriminate against individuals on the basis of sex, age, gender identity, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. Furthermore, the opportunities/benefits that eligible ex-combatants have access to when participating in a particular DDR process shall not discriminate against individuals on the basis of their former affiliation with a particular armed force or group. It is likely there will be a need to address potential \u2018spoilers\u2019, e.g., by negotiating \u2018special packages\u2019 for commanders in order to secure their buy-in and to ensure that they allow combatants to participate. This political compromise must be carefully negotiated on a case-by-case basis. Furthermore, the inclusion of youth at risk and other non-combatants should also be seen as a measure helping to prevent future recruitment.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "62b14da7-19a7-4194-9ef8-ddeadc4cba46", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.4 Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made; and, ultimately, no individual or community should be made less secure by the return of ex-combatants or the presence of UN peacekeeping, police or civilian personnel. The establishment of UN-supported prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection, etc.) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, or any other violation of human rights. It is particularly important to consider \u2018do no harm\u2019 when assessing the reinsertion and reintegration options for female fighters or women and girls associated with armed forces and groups.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "7de33c74-ce19-4a89-984d-6b2dfaa4b2d6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.5 Context specific Integrated DDR needs to be flexible and context-specific in order to address national, regional, and global realities. DDR should consider the nature of armed groups, conflict drivers, peace opportunities, gender dynamics, and community dynamics. All UN or UN-supported DDR interventions shall be designed to take local conditions and needs into account. The IDDRS provide DDR practitioners with comprehensive guidance and analytical tools for the planning and design of DDR rather than a standard formula that is applicable to every situation.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "fde766d4-84e9-4200-b8bd-7e624cf7c63f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.6.1 Flexible, sustainable and transparent funding arrangements Due to the complex and dynamic nature of integrated DDR processes, flexible and long-term funding arrangements are essential. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding, etc., and the criteria established for the use of funds shall be flexible. Past experience has shown that assigning funds exclusively for specific DDR components (e.g., disarmament and demobilization) or expenditures (e.g., logistics and equipment) sets up an artificial distinction between the different elements of a DDR programme and makes it difficult to implement the programme in an integrated, flexible and dynamic way. The importance of planning and initiating reinsertion and reintegration support activities at the start of a DDR programme has become increasingly evident, so adequate financing for reintegration needs to be secured in advance. This should help to prevent delays or gaps in implementation that could threaten or undermine the programme\u2019s credibility and viability (see IDDRS 3.41 on Finance and Budgeting).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "bf424153-ef19-4c64-b3dd-83bbb0c6bf96", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.6.2 Accountability and transparency In order to build confidence and ensure legitimacy, and to justify financial and technical support by international actors, DDR programmes, DDR-related tools and reintegration support are, from the very beginning, predicated on the principles of accountability and transparency. Post-conflict stabilization and the establishment of immediate security are the overall goals of DDR, but integrated DDR also takes place in a wider recovery and reconstruction framework. While both short-term and long-term strategies should be developed in the planning phase, due to the dynamic and volatile conflict and post-conflict context, interventions must be flexible and adaptable. The UN aims to establish transparent mechanisms for the independent monitoring, oversight and evaluation of integrated DDR and its financing mechanisms. It also attempts to create an environment in which all stakeholders understand and are accountable for achieving broad objectives and implementing the details of integrated DDR processes, even if circumstances change. Many types of accountability are needed to ensure transparency, including: the commitment of the national authorities and the parties to a peace agreement or political framework to honour the agreements they have signed and implement DDR programmes in good faith; the accountability and transparency of all relevant actors in contexts where the preconditions for DDR are not in place and alternative DDR-related tools and reintegration support measures are implemented; the accountability of national and international implementing agencies to the five categories of persons who can become participants in DDR for the professional and timely carrying out of activities and delivery of services; the adherence of all parts of the UN system (missions, departments, agencies, programmes and funds) to IDDRS principles and guidance for designing and implementing DDR; the commitment of Member States and bilateral partners to provide timely political and financial support to integrated DDR processes. Although DDR practitioners should always aim to meet core commitments, setbacks and unforeseen events should be expected. Flexibility and contingency planning are therefore needed. It is essential to establish realistic goals and make reasonable promises to those involved, and to explain setbacks to stakeholders and participants in order to maintain their confidence and cooperation.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "0b1a17c8-c966-459b-b845-16517531e9f7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 24, + "Paragraph": "8.7. Nationally and locally owned Ensuring national and local ownership is crucial to the success of integrated DDR. National ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between ex-combatants and community members. Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between government ministries and local government, between Government and national civil society, and between Government and external partners. In contexts where national capacity is weak, a Government exerts national ownership by building the capacity of its national institutions, by contributing to the integrated DDR process and by creating links to other peacebuilding and development initiatives. This is particularly important in the case of reintegration support, as measures should be designed as part of national development and recovery efforts. National and local capacity must be systematically developed, as follows: Creating national and local institutional capacity: A primary role of the UN is to supply technical assistance, training and financial support to national authorities to establish credible, capable, representative and sustainable national institutions and programmes. Such assistance should be based on an assessment and understanding of the particular context and the type of DDR activities to be implemented, including commitments to gender equality. Finding implementing partners: Besides national institutions, civil society is a key partner in DDR. The technical capacity and expertise of civil society groups will often need to be strengthened, particularly when conflict has diminished human and financial resources. Particular attention should be paid to supporting the capacity development of women\u2019s civil society groups to ensure equal participation as partners in DDR. Doing so will help to create a sustainable environment for DDR and to ensure its long-term success. Employing local communities and authorities: Local communities and authorities play an important role in ensuring the sustainability of DDR, particularly in support of reintegration and the implementation of DDR-related tools. Therefore, their capacities for strategic planning and programme and/or financial management must be strengthened. Local authorities and populations, ex-combatants and their dependents/families, and women and girls formerly associated with armed forces and groups shall all be involved in the planning, implementation and monitoring of integrated DDR processes. This is to ensure that the needs of both individuals and the community are addressed. Increased local ownership builds support for reintegration and reconciliation efforts and supports other local peacebuilding and recovery processes. As the above list shows, national ownership involves more than just central government leadership: it includes the participation of a broad range of State and non-State actors at national, provincial and local levels. Within the IDDRS framework, the UN supports the development of a national DDR strategy, not only by representatives of the various parties to the conflict, but also by civil society; and it encourages the active participation of affected communities and groups, particularly those formerly marginalized in DDR and post-conflict reconstruction processes, such as representatives of women\u2019s groups, children\u2019s advocates, people from minority communities, and persons with disabilities and chronic illness. In supporting national institutions, the UN, along with key international and regional actors, can help to ensure broad national ownership, adherence to international principles, credibility, transparency and accountability (see IDDRS 3.30 on National Institutions for DDR).", + "Can": true, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "09994a74-3557-4aee-b678-f4202759be53", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 24, + "Paragraph": "8.8 Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the implementation of DDR. Managing repatriation and the cross-border movement of weapons and armed groups requires careful coordination among UN agencies and regional organizations supporting DDR, both in the countries concerned and in neighbouring countries where there may be spill-over effects. The return of foreign former combatants and mercenaries may be a particular problem and will require a separate strategy (see IDDRS 5.40 on Cross-Border Population Movements). Most notably, UN actors need to engage regional stakeholders in order to foster a conducive regional environment, including support from neighbouring countries, for DDR interventions addressing armed groups operating on foreign national territory and with regional structures.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "0b60e4ec-e093-476e-bc5c-b39e431c915f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.9. Integrated From the earliest assessment phase and throughout all stages of strategy development, planning and implementation, it is essential to encourage integration and unity of effort within the UN system and with national players. It is also important to coordinate the participation of international partners so as to achieve common objectives. Joint assessments and programming are key to ensuring that DDR programmes in both mission and non-mission contexts are implemented in an integrated manner. DDR practitioners should also strive for an integrated approach in contexts where DDR programmes are used in combination with DDR-related tools, and in settings where the preconditions for DDR programmes are absent (see IDDRS 3.10 on Integrated Planning).", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "1f2a14ec-46b5-4656-8ec8-a96b3eca0df4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.10.1. Safety and security Given that DDR is aimed at groups who are a security risk and is implemented in fragile security environments, both risks and operational security and safety protocols should be decided on before the planning and implementation of activities. These should include the security and safety needs of UN and partner agency personnel involved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Security and other services must be provided either by UN military and/or a UN police component or national police and security forces. Security concerns should be included in operational plans, and clear criteria, in line with the UN Programme Criticality Framework, should be established for starting, delaying, suspending or cancelling activities and/or operations, should security risks be too high.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "a12e448b-5e74-4ee1-858f-b6d2a6c22689", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 25, + "Paragraph": "8.10.2. Planning: assessment, design, monitoring and evaluation Integrated DDR processes shall be designed on the basis of detailed quantitative and qualitative data. Supporting information management systems should ensure that this data remains up to date, accurate and accessible. In the planning stages, information is gathered on the location of armed forces and groups, the demographics of their members (grouped according to sex and age), their weapons stocks, and the political and conflict dynamics at national and local levels. Surveys of national and local labour market conditions and reintegration opportunities should be undertaken. Regularly updating this information, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR to adapt to changing circumstances (also see IDDRS 3.10 on Integrated Planning, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Institutions for DDR). Internal and external monitoring and evaluation mechanisms must be established from the start to strengthen accountability within integrated DDR, ensure quality in the implementation and delivery of DDR activities and services, and allow for flexibility and adaptation of strategies and activities when required. Monitoring and evaluation should be based on an integrated approach to metrics, and produce lessons learned and best practices that will influence the further development of IDDRS policy and practice (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "22bdc0ac-2360-476d-91c9-3058bdea7cea", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.10.3. Public information and community sensitization Public information, awareness-raising and community sensitization ensure that affected communities and participants receive accurate information on DDR procedures and benefits. The sharing of information helps generate broad public support and national ownership, and at the same time manages expectations and encourages behavioural change, the demilitarization of hearts and minds, and reconciliation between ex-combatants and war-affected communities. Public information strategies should be drawn up and implemented as early as possible. Messages should be appropriately tailored for different audiences, considering gender and cultural dimensions in design and delivery, and should employ many different and locally appropriate means of communication (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "04af4363-d60b-4155-9dbb-7d0b4fb5a1af", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 26, + "Paragraph": "8.10.4. Transition and exit strategies While DDR programmes last for a specific period of time that includes the immediate post-conflict situation and the transition and early recovery periods, other aspects of DDR may need to be continued, albeit in a different form. DDR-related tools can be initiated after DDR programmes, such as when the disarmament of armed groups is followed by community-based weapons and ammunition management. Reintegration assistance also becomes an integral part of recovery and development. To ensure a smooth transition from one stage to another, an exit strategy should be defined as soon as possible, and should focus on how integrated DDR will seamlessly transform into broader and/or longer-term development strategies, such as security sector reform, violence prevention, socio-economic recovery, national reconciliation, peacebuilding, gender equality and poverty reduction. Annex A: Abbreviations A4P\t\tAction for Peacekeeping CEDAW\tConvention on the Elimination of Discrimination Against Women CVR\t\tcommunity violence reduction HIPPO\t\tHigh-Level Independent Panel of Peace Operations HRDDP\tHuman Rights Due Diligence Policy HRP\t\tHumanitarian Response Plan NWoW\t\tNew Way of Working PBF\t\tPeacebuilding Fund SDGs\t\tSustainable Development Goals SSR\t\tsecurity sector reform UDHR\t\tUniversal Declaration of Human Rights UNCT\t\tUN Country Team UN DSRSG\tUN Deputy Special Representative of the Secretary-General UN HC\t\tUN Humanitarian Coordinator UN RC\t\tUN Resident Coordinator UNSDCF\tUN Sustainable Development Cooperation Framework WAM\t\tweapons and ammunition management", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "69b3f37d-7bb9-4683-a65c-f86aaf259311", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 4. Guiding principles 4.1 Unconditional release and protection of children 4.2 Gender responsive and inclusive 4.3 Context specific 4.4 Flexible, accountable and transparent 4.5 Nationally and locally owned 4.6 Integrated 4.7 Transition and exit strategies 5. General DDR planning framework and considerations 5.1 Content considerations 5.2 Design considerations 6. Assessment \u2013 general guidance 6.1 Pre-analysis: Situating the DDR planning process 6.2 Situation assessment 6.2.1 Overall context 6.2.2 DDR-specific elements 6.2.3 DDR-relevant elements 7. Design of a DDR strategy \u2013 general guidance 8. Risk management \u2013 general guidance 8.1 Standard risk management steps 8.2 When to embed risk management in DDR planning 9. Outreach \u2013 general guidance 10. Planning document/DDR strategy \u2013 general guidance on structure 10.1 Content of the DDR strategy 11. General guidance for the finalization of strategic planning 12. Organizational considerations DDR planning \u2013 general guidance 12.1 Structures Annex A: Abbreviations 3.10 Integrated DDR Planning: Processes and Structures", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "a42f48eb-dd63-403a-aec4-5cf4e9886f6e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Summary Successful international support of DDR processes demands considerable planning. Given the many different actors involved in the various stages of DDR processes and the complex links within DDR processes and with other conflict or post-conflict responses, integrated planning, effective coordination and coherent reporting arrangements are essential. Past experiences have highlighted the need for the various actors involved in planning and implementing DDR, and monitoring its impacts, to work together in a complementary way that avoids duplication of effort or competition for funds and other resources. This module provides guidance for conducting the strategic planning of international support to DDR processes. Such planning is anchored in established DDR principles and aims to strengthen national leadership and ownership. It begins with an integrated assessment of context, needs, capacities and mandates that provides the basis for the identification of the most appropriate DDR processes, the formulation of strategic approaches with clear objectives, and the determination of clear roles and responsibilities. Strategic planning shall be gender responsive and include a robust risk management element throughout the process, as well as a comprehensive outreach and communication dimension tailored to the relevant DDR audiences, in order to secure buy-in and enable implementation. The process should result in a comprehensive strategic plan of support, a DDR strategy, to which individual entities (UN peace operations; UN agencies, funds and programmes; national authorities/stakeholders; other Member States/donors; and implementing partners) contribute through their respective programmatic instruments (e.g., mission plans, country and programme documents).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "565c3a2b-b8c2-4eed-ad8e-6c3999c7f1d8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module outlines a general strategic planning process for providing and structuring support for DDR processes. The scope of the module covers all DDR measures \u2013 jointly constituting a process \u2013 presented in IDDRS 2.10 on The UN Approach to DDR: DDR programmes, DDR-related tools and reintegration support in all relevant contexts, including UN mission and non-mission settings, as well as in contexts where preconditions for DDR programmes do not exist. The planning process should be cognizant of the context, needs and capacities, and determine which types of interventions, or a combination thereof, are the most appropriate. In particular, this module provides guidance on: Situating the planning of DDR processes within the broader national and regional context; Undertaking analyses and assessments to provide data and evidence for strategic choices, and identifying knowledge gaps (discussed in greater detail in IDDRS 3.11 on Integrated Assessments for DDR); Identifying the appropriate DDR process, including the combination of measures to form such a process; Determining the goal of the DDR process; Determining strategic objectives and the most appropriate course of action to meet these objectives; Articulating, in general terms, roles and responsibilities and identifying the key programmatic and operational dimensions for implementation (see IDDRS 3.20 on DDR Programme Design); Embedding risk management in the planning process as a critical enabler of plan delivery; Designing a planning process that is both inclusive and rigorous, including using the most appropriate planning techniques at any given moment, and identifying the right planning products for the types of actions considered; and Determining and accessing the capacities and skills required to ensure an efficient, effective and integrated DDR planning process. This module provides guidance at the strategic planning level. More detailed coverage of the programming and monitoring and evaluation of DDR processes is found in IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on Monitoring and Evaluation of DDR, respectively. Assessments needed for DDR planning are discussed in greater detail in IDDRS 3.11 on Integrated Assessments for DDR.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "0ae57a61-564a-437d-bcd8-95fd45172372", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 3, + "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. In addition, this module defines planning as the process of setting objectives, determining the proper course of action to achieve these objectives, and aligning the means with the course of action.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "4295a31d-f344-461a-a14e-c010ce255549", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "3. Introduction The successful implementation of DDR processes often requires difficult compromises and trade-offs among various political, security, humanitarian, human rights and development considerations. It hinges on intense and careful coordination of interventions among a wide range of national and international actors across multiple phases and dimensions of DDR, all implemented under a clear, coherent and shared vision of what needs to happen and which objectives need to be met. It also entails a thorough understanding of context, interests and risks, as well as careful consideration of operational realities and requirements. Whatever the type of DDR process, the nature of DDR carries high risks for all those involved, from direct participants to beneficiaries, such as host communities, Governments, implementing actors and donors (see IDDRS 3.21 on DDR Process Stakeholders). For the UN and its partners, supporting Government-led DDR processes requires rigorous and inclusive planning, undertaken to achieve alignment between needs, expectations, objectives, DDR processes and approaches, roles and capacities. To ensure that DDR programmes effectively address the different experiences of men and women, and acknowledge the implications of gender identities in relation to violence, gender perspective needs to be mainstreamed and addressed as early as possible in the design and planning of DDR programmes. To ensure this, assessment teams shall deploy gender expertise, including both international and national gender experts, together with DDR experts. Methodology shall ensure the involvement of local experts, women\u2019s groups and organizations working for gender equality. Sufficient resources for translators, notetakers and other aids to equal participation shall be planned for in advance of field activities. The module\u2019s content and the guidance it provides are based on the recognition that planning DDR processes is a challenging task, for a number of reasons, including: The complexity and highly political sensitivities involved across all types of DDR processes (see IDDRS 2.20 on The Politics of DDR), which may at times translate into resistance or pressures during the planning phase, including the pressure to \u2018rush into doing\u2019 before proper planning has been undertaken. The diversity, complexity and fluidity of contexts in which DDR processes take place, including the evolving nature of conflicts. The absence of reliable information required to implement DDR processes adequately (e.g., exact number of combatants or weapons). The number of national and international actors that need to be involved in or consulted during the planning phase. Competing priorities within DDR processes and beyond, and the political, financial and technical pressures that emanate from these competing priorities. The unique political challenges often posed by addressing the specific needs of men, women, boys and girls, as well as marginalized groups, and the additional human and financial resources required to ensure the planning process is gender responsive. The need to identify, analyse and manage links between DDR processes and many other crisis and conflict management, peacebuilding and sustaining peace imperatives (e.g., security sector reform [SSR], conflict recovery and reconstruction, poverty alleviation and promotion of gender equality). It is important for actors involved in planning DDR to be aware of the challenges and to formulate strategic planning that recognizes and, to the extent possible, manages them. These challenges do not dissipate once the planning is over. Many carry over into the implementation phase. Therefore, strategic planning must establish adequate controls, in the form of risk management measures, for implementation. The module therefore places particular focus on strategic planning for risk management.", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": true + }, + { + "ID": "c2c4630f-b5a7-4f82-be16-f2ed7612e2e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to planning for DDR processes.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "155e9820-3518-4bd4-8958-5ea72fc558b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 4, + "Paragraph": "4.1 Unconditional release and protection of children DDR strategic planning shall prioritize the immediate release of children associated with armed forces and groups, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. When DDR programmes, DDR-related tools and/or reintegration support are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. Children will then be supported to demobilize and reintegrate into their families and communities (see IDDRS 5.30 on Children and DDR).", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "953f690e-42fc-4701-b5ee-2936e93606c2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.2 Gender responsive and inclusive Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of a DDR programme. There is considerable diversity in how individuals and groups understand, experience and express gender through the roles they take on, the expectations placed on them, their relations with others and the complex ways that gender is institutionalized in the strategic planning phase. Integrating gender in DDR requires that during strategic planning, practitioners take account of the specific needs of girls, women, men and boys with respect to both biological/sex differences and sociocultural gender differences, as well as the capacities they bring and contributions they can make. All DDR processes should be planned in a manner that promotes gender equality and should be grounded in a rights-based approach. In the strategic planning as well as implementation phases, DDR practitioners should be able to clearly distinguish between the practical and strategic needs of girls, women, boys and men in DDR and how this relates to all levels of design (see IDDRS 5.10 on Women, Gender and DDR).", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "aaf9c7f0-31e2-4859-87c7-74b4ef0405d9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.3 Context specific DDR strategic planning shall be conducted in a manner that is sensitive to political and social realities, including the use of appropriate terminologies associated with DDR interventions. (In some instances, the term \u2018DDR\u2019 itself may not be accepted, and DDR practitioners may need to offer alternatives, such as \u2018interim stabilization measure\u2019 or nomenclature appropriate to the context and acceptable to the key parties.)", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "ae6844bf-f3f7-4f14-9316-044842dc7a74", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.4 Flexible, accountable and transparent DDR processes are collective endeavours, requiring multiple actors to be accountable to each other for constructive engagement during the strategic planning phase and for adherence to agreed outcomes from the planning phase (including mutual accountability of national and international actors). DDR strategic planning takes place in highly fluid and complex environments and so it must be cognizant of, and respond to, changing circumstances. While it must follow established standards, DDR strategic planning shall be carried out with flexibility \u2013 for example, with regard to timelines and participants. In addition, it is essential for those responsible for the planning of DDR to avoid preconceived solutions and to be prepared to adapt throughout the planning phase, as changes are inevitable. DDR strategic planning presents the opportunity to explore and agree on ambitious but realistic goals, objectives, roles and responsibilities. In the course of making such determinations, it is essential to set expectations of all partners at the right level, and especially for UN and other international partners not to over-promise. To secure trust and buy-in for implementation of DDR processes, and to ensure that expectations are clear for all relevant actors, strategic planning must be transparent in its aims, conduct and outcomes. In particular, those engaging in the planning phase must be clear about their interests, mandates and capacities and the constituents they represent.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": true + }, + { + "ID": "7c5f5fdb-d844-42e6-a11c-5282e13e419d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.5 Nationally and locally owned As is true for the DDR process as a whole, the ownership of the strategic planning process, notwithstanding who is conducting it, shall be nationally owned (see IDDRS 3.30 on National Ownership and National Institutions in DDR). National ownership does not always occur naturally, which makes it the responsibility of the stakeholders in strategic planning to foster ownership through inclusion of national actors in planning processes. DDR strategic planning shall never be done in isolation. It shall be conducted in alignment with the stabilization, peacebuilding and/or recovery framework, with synergies throughout the humanitarian- development-peace nexus. In particular, and in line with IDDRS 2.20 on The Politics of DDR, planning shall identify the political strategy or strategies to which the DDR processes will contribute.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "d253edc5-3137-48eb-8ccc-d9064dd654a4", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.6 Integrated Planning of DDR processes should involve all relevant UN agencies, departments, funds and programmes at both the headquarters and field levels, national counterparts, and funding and implementing partners. An integrated approach to planning shall aim to develop, to the extent possible: A common framework (i.e., one that everyone involved uses) for developing, managing, funding and implementing a DDR strategic planning process. An integrated DDR management structure (unit or section), with the participation of staff from participating UN agencies, funds and programmes and primary reporting lines to the Deputy Special Representative of the Secretary-General in mission settings or Resident Coordinator in non-mission settings. Such an approach should include the co-location of staff, infrastructure and resources, as this allows for increased efficiency and reduced overhead costs, and brings about more responsive planning, implementation and coordination. Joint programmes that harness UN country team and mission resources into a single process and results-based approach to putting the DDR strategy into operation and achieving shared objectives. A single framework for managing multiple sources of funding, as well as for coordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "a9b17009-9c08-40e2-bfa4-b374984e91d1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.7 Transition and exit strategies As DDR processes are nationally and locally owned, planning shall be structured to enable such processes to evolve towards full assumption of DDR functions by national actors. Over time, changes in the degree to which national and local actors can and do assume such functions will require adjustments to the roles played by international actors within their mandates, including UN peace operations. Where possible, Government and national DDR institutions should actively lead the strategic planning process and be supported by UN agencies, funds and programmes.", + "Can": true, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "36f10bb1-46c1-4dfb-a728-06f96717139e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 7, + "Paragraph": "5.1 Content considerations At the outset of the DDR planning phase, practitioners should frame and articulate the content considerations, in the form of questions that need to be answered throughout the planning phase. These will define what needs to happen during subsequent planning phases, data and evidence collection, who needs to participate, and other process considerations. These questions include: What is the trigger, or reason, for planning DDR (e.g., Government request, UN Security Council mandate, peace agreement, changes in context, etc.)? Are there appropriate national policies and/or frameworks for DDR within which the planning process needs to unfold? Is there a need to support national institutions/warring parties to develop a national policy and/or framework? What is the situation, and what are the needs and capacities? What do we need to know before we proceed? What don\u2019t we know? What is the most appropriate combination of measures to form the DDR process? What are the objectives of the DDR process? What are conditions of success, and are there red lines for support (i.e., conditions that need to be met ex ante for the UN and partners to provide support \u2013 see IDDRS 2.11 on The Legal Framework for UN DDR)? How will these objectives be achieved, and by whom? What resources (human, logistical, financial) will be needed? What could go wrong and/or affect achievement of the objectives? How will we know if the objectives are being achieved or have a chance of being achieved?", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "ce6f0bb4-5f82-450d-af26-06145085c900", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 7, + "Paragraph": "5.2 Design considerations On the basis of this framing, key strategic planning design considerations include: Authority: To secure buy-in, the DDR practitioners should clearly articulate the authority \u2013 or authorities \u2013 under which the planning is being conducted (see content considerations above). Timing and duration of the strategic planning phase: This may be informed by specific DDR clauses or instructions in a peace agreement or related arrangements, by other milestones (national elections, funding deadlines, etc.) and/or by the timing of related responses (e.g., SSR). Both the timing and the duration of DDR planning are context specific, but the rationale for both should be carefully considered and clearly communicated to all relevant actors. Participation: DDR planning shall be inclusive and reflective of the diversity of interests, needs and capacities. Hence, a clear plan for outreach and engagement strategies must be defined at the outset of the strategic planning phase (see section 9 and IDDRS 3.21 on DDR Process Stakeholders for specific guidance). This plan shall include who needs to be engaged and when, to prepare accordingly (including to secure the right capacity at the right time) and transparently communicate expectations of engagement. Roles and responsibilities: To manage expectations and transaction costs, roles and responsibilities shall be defined at the outset with relation to specific planning functions, including, in particular, analysis and data collection, outreach coordination, communication, stress testing, drafting and finalization/approval.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "0d2550e6-7242-43a2-b157-3f16e3a7f46f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "6. Assessment \u2013 general guidance DDR practitioners should conduct two phases, pre-analysis and situation assessment, as follows: FIGURE 1: THE TWO PHASES OF THE DDR STRATEGIC PLANNING PROCESS", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "b6ba4087-2d92-4bbc-91f2-97804beb71e1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 8, + "Paragraph": "6.1 Pre-analysis: Situating the DDR planning process The first step in developing a strategic plan for potential DDR processes is to situate the planning exercise at four levels: Moment: Why is strategic planning required now (e.g., UN Security Council mandate, peace agreement, specific Government request, changes on the ground)? Situating in the moment provides the authorizing framework(s) to guide planning. Scope: Based on the authorizing frameworks, are there predetermined boundaries to the strategic planning? These can be geographical (e.g., DDR processes across the entire country or in targeted locations), temporal, process specific (e.g., reintegration) and/or beneficiary specific. Audience: To whom will the strategic plan apply? Considering the nature of DDR processes, and the need for coherent approaches across a wide range of actors, strategic plans should provide for unity of effort to all relevant DDR actors, both national and international, who will then translate the plan into entity-specific programmes (see IDDRS 3.20 on DDR Programme Design). However, in some cases, the strategic plan may not apply to all actors. It is therefore important to clarify the plan\u2019s audience at the outset. Other plans: The relationship between the DDR strategic plan and other national and international plans must be clarified at the outset. At the national level, in particular, relevant plans with which the DDR planning process should be harmonized include national development, United Nations Sustainable Development Cooperation Frameworks (UNSDCF) peacebuilding and recovery plans, sectoral plans, and possible action plans to end and prevent grave violations against children. In contexts where a UN peace operation is deployed or being considered, it is important to align DDR planning with UN mission planning requirements and timelines, notably the timing and content relationship between: The DDR assessment and the UN systemwide strategic and technical assessments; and The DDR strategic plan and the Secretary-General\u2019s report to the UN Security Council.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "bf681b3f-58a7-4ab1-93e1-1706d3b77dbe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 9, + "Paragraph": "6.2 Situation assessment The DDR strategic plan should be based on an in-depth understanding of the international, regional, national or local context and the situation in which DDR is to be implemented, as this will shape the choice of DDR process, its objectives, overall approach and criteria for participation. The main elements of the contextual analysis shall always include the three dimensions that follow.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "3aca83b9-4990-47e7-9338-829eb2e3992c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 9, + "Paragraph": "6.2.1 Overall context The assessment shall begin with the broad political, social and economic characteristics of the operating environment, with a particular emphasis on: The political situation, including recent evolution, current political arrangements and dispensation, and near-term milestones (e.g., elections) and risks to political stability that may impact DDR processes and the intersectionality with gender dynamics (see IDDRS 2.20 on The Politics of DDR for suggested assessment questions). The regional environment, the relationships between the country and its neighbours, and the regional dynamics that may influence DDR, including migration, displacement and organized criminal networks (see IDDRS 5.40 on Cross-Border Population Movements and IDDRS 6.40 on DDR and Organized Crime). The security situation, including a gendered understanding, and the sources, causes and triggers of armed conflict, with data on levels of armed violence and organized crime, levels and types of victimization, and local perceptions of security. The human rights situation, based on disaggregated data on patterns of political and socioeconomic exclusion and discrimination, and relevant institutional capacities and legal frameworks. The women, peace and security context, including the role women have played in conflict and in armed groups, the gender situation with regard to political and socioeconomic equality and opportunities, sexual and gender-based violence statistics and patterns, and relevant institutional capacities and legal frameworks (see IDDRS 5.10 on Women, Gender and DDR). Gender-specific needs, capacities, experiences and knowledge of women and men, including their relevant access to decision-making positions and resources, gender-specific vulnerabilities, gender dynamics, roles and images in society, based on sex-disaggregated qualitative and quantitative data and an analysis of gender roles and norms. The child protection situation, based on information and trends pertaining to grave violations against children, including the recruitment and use of children by armed forces and groups and opportunities for their reintegration (see IDDRS 5.20 on Children and DDR). The situation of youth, including levels of unemployment and disenfranchisement that may have led to recruitment into armed forces and groups,\u00a0as well as capacities to harness\u00a0for peace (see IDDRS 5.30 on Youth and DDR). The socioeconomic situation, including employment levels and opportunities, sources of economic growth and labour demand, national resource management, and regional and local disparities. National infrastructure for social services, including measures of access across vulnerable populations (notably in health, psychosocial support, education and vocational training).", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "e9336f5d-8977-4186-8b5b-7415247b5a6f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 10, + "Paragraph": "6.2.2 DDR-specific elements DDR-specific elements that must be part of the overall assessment include: Current DDR and existing DDR frameworks (e.g., provisions in peace accord, amnesties, national strategies) and all relevant laws, treaties and conventions in force in the country that have a bearing on potential DDR, including regional and international arms control instruments. Existing national and local capacities for DDR processes (e.g., disarmament/weapons and ammunition management, demobilization, reintegration, community violence reduction [CVR]), including the release and reintegration of children associated with armed forces and groups with a focus on DDR-specific institutions (e.g., national commissions) as well as other relevant institutions (e.g., Ministries of Health, Education). Capacity of communities to absorb former members of armed forces and groups, including children and youth formerly associated with armed forces and groups, and/or to support community-based DDR processes (e.g., CVR). National and local budgetary allocations for DDR (past and present). DDR funding and donor strategies, past and present, and the level of support to fund new, additional or expanded DDR efforts. Overview of armed forces, groups and gangs, including age- and gender-disaggregated data, information on force/group strength, location, organization and structure, political affiliations, number and type of weapons, ammunition and explosives, etc. In addition, the assessment should explore previous DDR efforts to understand achievements and challenges, and extract lessons that can inform future DDR. This should also include a critical examination of the role and track record of UN and other international actors in previous DDR processes. This assessment should inform the determination of roles and responsibilities (see section 7).", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "bb62dabe-5c5e-4f59-884e-8f8a29de3f05", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 11, + "Paragraph": "6.2.3 DDR-relevant elements In addition to the overall context and DDR-specific dimensions, the assessment must cover other elements to which DDR may be connected: Local and national peace mediation efforts; Reconciliation and transitional justice frameworks and initiatives (see IDDRS 6.20 on DDR and Transitional Justice); Status of SSR (see IDDRS 6.10 on DDR and Security Sector Reform); Stabilization, peacebuilding, recovery and reconstruction plans; Women, peace and security; and Any other sustaining peace initiatives of potential relevance. Across these different elements, the assessment should strive to establish a baseline against which to measure strategies and changes that would be directly attributable to planned DDR or to which DDR could contribute.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "6013f18f-240d-42f9-bcf9-917f6a77b2d6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 12, + "Paragraph": "7. Design of a DDR strategy \u2013 general guidance Based on the assessments, as described in section 6 above and in IDDRS 3.11 on Integrated Assessments for DDR, the design of a DDR strategy should follow a structured planning phase, focusing on the intersection between what is needed and what can be done. What is needed combines the situation on the ground and what is being requested (by Government, the Security Council, etc.). What can be done is determined by capacities (human and financial, existing and to be mobilized) and red lines (see IDDRS 2.11 on The Legal Framework for DDR and IDDRS 2.30 on Community Violence Reduction). The intersection between these two dimensions provides the framework for the DDR process. Within this framework, DDR practitioners should follow the sequence of steps outlined below. Step 1 It is important to make the rationale for the type of DDR process very explicit, linking it to the nature of the problem(s) and explaining why the selected process is the most appropriate under the current context (see IDDRS 2.10 on The UN Approach to DDR). (Note: DDR planning is susceptible to cognitive bias risk, whereby solutions that were implemented in another context are replicated because the two environments share similar features. Basing the planning as much as possible on a detailed analysis of the target country/context [see IDDRS 3.11 on Integrated Assessments for DDR] should help overcome this bias.) When selecting DDR processes, it is often useful for DDR practitioners to articulate alternatives and explore why they would not be viable and appropriate solutions to the identified problem(s). A planner should also keep in mind that, if a diligent planning process leads to the conclusion not to pursue DDR in a given context, that is a valid planning recommendation. Step 2 It is important to determine the scale and scope of the DDR process, notably with regard to geographical location, and definition, type and number of potential participants and beneficiaries. If relevant, the planning should define any prioritization of location and/or participants and beneficiaries. For armed groups, for example, prioritization should be based on their involvement in or potential to cause violence, or otherwise affect security and the peace process (where relevant). Groups with specific needs, such as women, men, persons with disabilities and persons with chronic illnesses, should be explicitly identified. Step 3 The critical step of establishing roles and responsibilities must cover all relevant national and international actors in the DDR process. IDDRS 3.21 on DDR Process Stakeholders and IDDRS 3.30 on National Ownership and National Institutions in DDR should be used for guidance. Roles and responsibilities will be different in mission and non-mission settings. The objective is to determine, as explicitly as possible, the nature of the roles and responsibilities. In a DDR process, such roles will vary greatly, and include policymaking, strategic oversight, direct implementation, funding, logistics, advocacy, communication and/or monitoring. Roles and responsibilities should be determined on the basis of mandates and capacities (including track record in country, if relevant, which should be examined as part of the assessment). As such, the planning should outline specific expected roles and responsibilities of all relevant actors, beyond DDR-specific institutions, such as institutions and partners providing access to social services (psychosocial, health, education, etc.). This step is the opportunity to: Define the roles of all stakeholders, including vulnerable groups, as decision-makers in the process. Enable each stakeholder to prepare accordingly, and to identify any capacity-building needs or other type of support that may be required prior to implementation, in addition to any capacity-building activities during implementation (see IDDRS 2.10 on The UN Approach to DDR\u2013 for further guidance). Identify and understand any source of resistance (or spoiler), and address accordingly. Determine the relationships among these roles, notably, if and how roles enable one another, and how to sequence them. Step 4 It\u2019s important to delineate strategic approaches: DDR practitioners should define the way in which the particular DDR process will be carried out (see IDDRS 3.20 on DDR Programme Design). This includes the formulation of key activities (with more details to be provided in specific programmatic documents and work plans), as well as considerations of sequencing within each process, and between the DDR process and other interventions such as SSR, transitional justice or reconstruction (see IDDRS 2.20 on The Politics of DDR, section 6.3). A dedicated focus of the strategic approaches should be on the capacity-building required to implement a DDR process. Jointly with national actors and donors, the UN DDR planning team should design a clear capacity-building plan, with costs, for the duration of the plan. This plan can be linked to relevant activities (embedding capacity-building in other activities) and/or be framed as a stand-alone program under the overall strategic plan, with dedicated activities and resources. The focus should not be just on DDR-specific institutions, especially if the DDR processes include reintegration elements; in such cases, the DDR planning team should determine capacity support needs of other Ministries (e.g., Education, Health). Finally, the strategic approaches should define sequences of key activities around milestones or benchmarks that would trigger (i) activation of the next activities and (ii) changes in roles of the UN and partners as relevant, including transfer of responsibilities and termination of activities. Step 5 For each DDR measure, the planning must present the relevant legal frameworks (see IDDRS 2.11 on The Legal Framework for UN DDR). This step is important to identify policy, programmatic, communication and operational implications, including any additional red lines not identified in the first step of the process. The legal framework also informs the determination of roles and responsibilities. In situations where there is no identifiable national legal framework, strategic planning will need to foresee steps to help the national authorities establish one. Step 6 The determination of roles enables the planning of the most appropriate governance and coordination arrangements. These shall be established in a manner that promotes national leadership and ownership of the DDR process (see IDDRS 3.30 on National Ownership and National Institutions in DDR). While each context and DDR process will require tailored governance and coordination arrangements, standards usually include: A strategic oversight mechanism, at ministerial level, with senior UN leadership (often in a co-chair role) and high-level representatives from donors, implementers and civil society; and A programmatic and operational coordination mechanism, often led by the national DDR commission (or similar institution), with all relevant implementing partners. Step 7 DDR processes may involve large logistical and administrative requirements (see IDDRS 3.40 on Logistical Support for DDR).The value of embedding logistical requirements early in the planning phase and as an integral element of the plan is twofold: it grounds the DDR processes in concrete costs and timelines, and it enables those responsible for providing such support to prepare accordingly, as many of these activities require a long lead time, especially in challenging operational environments. As indicated in section 12, it is therefore essential for the planning team to include experts in logistics (and mission support when a peace operation is present) at the very beginning of the process, and to subject strategic choices to a logistics test (see section 11). Step 8 For each process and its key activities, the plan should articulate an overall estimated cost and identify sources of funding. The costing of the plan should be iterative, with funding estimates revised as the objectives, scope, scale and activities are refined (see IDDRS 3.41 on DDR Budgeting and Financing). The costing should be comprehensive, and always include logistics and other operational and administrative requirements, as well as communication, monitoring and evaluation needs. In the past, failure to include such costs has undermined DDR processes. DDR programme budgets, including those of agencies, funds and programmes, should assign a minimum of 20% of the budget to all gender-related activities and female-specific interventions, including expertise and programmatic interventions to address gender-based and sexual violence (see IDDRS 5.10 on Women, Gender and DDR for additional guidance). Funding sources should include national and international dimensions: in particular, the DDR planning team should determine if and what can be funded through the national budget, based on discussions with relevant ministries and international financial institutions. Where applicable, links with local-level (regional, municipal) plans and budgets should be determined, including opportunities for budget transfers for local-level planning and implementation. Potential international funding sources include assessed contributions (when a peace operation is present), agency core resources, global funds and bilateral support (see IDDRS 3.41 on DDR Budgeting and Financing for more details). The establishment of dedicated DDR pooled funds should be considered. For each potential source, the plan should determine key parameters: nature (grant, loan, etc.), duration (short term, multi-year), accessibility (time required to secure the funding), transaction costs (resources required to secure the funding), and any other conditions, as some sources may come with restrictions (notably, on the type of activity that can be funded). All these parameters must be factored in to design a funding approach that allows the activities to be funded and implemented as planned. Potential funding sources should then be matched. They may at times lead the planning team to review the plan\u2019s design, including objectives, scope and activities, accordingly. Given the highly fluid and complex nature of the environment in which DDR processes take place, and the interdependencies with other processes, DDR practitioners should prioritize funding sources that are provided with the highest degree of flexibility and the lowest transaction costs (see also IDDRS 3.41 on DDR Budgeting and Financing). Step 9 At a strategic level, the planning process should set the overall ambitions towards which each partner will contribute by outlining a results framework. At a minimum, the strategic plan should define the following level of results: Overall goal of the plan, defined as the intended long-term effects of its implementation; these can be framed in relation to national visions and priorities, Security Council mandates; UNSDCF and/or the 2030 Agenda and the Sustainable Development Goals; and the women, peace and security agenda. Strategic objectives, defined as institutional, behavioural or legislative changes that are critical for progress towards the desired impact, and to which the various actors involved in the DDR strategic plan can collectively make a substantial contribution. They may also be presented as expected accomplishments and/or outcomes. While the strategy should focus on the high-level objectives described above, it is recommended, where possible, to include selected key outputs as well, defined as the changes in capacities, knowledge of individuals and institutions, or availability of new or improved products and services from the implementation of the plan\u2019s key activities. Doing so will enable linking the strategic planning to the programme design stage (see IDDRS 3.20 on DDR Programme Design). Together, these are the common, collective results. More specific results deriving from these common results may then be defined by each actor in their respective programming frameworks/documents (see IDDRS 3.20 on DDR Programme Design). For each result, the DDR planning team should define a small set of qualitative and quantitative indicators, with baseline, target and means of verification. The results framework with these metrics grounds the plan in what shall be achievable targets (see IDDRS 3.50 on Monitoring and Evaluation of DDR for further guidance). Finally, it is recommended to subject the plan and its results framework to a review of its \u2018evaluability\u2019. This exercise, undertaken by monitoring and evaluation experts, determines whether the plan provides sufficient and clear information to enable effective subsequent monitoring and evaluation. If not, results and their indicators, baselines and targets should be further refined. Normative obligations: in line with DDR principles, the strategic plan should articulate how the DDR processes will meaningfully incorporate considerations regarding gender, human rights and conflict sensitivity/do no harm. Therefore, as the strategic plan is being put together, as well as when it is finalized, clear approaches should be defined for each planned DDR measure and related key activities, based on the findings of the assessment. Relevant data gaps should be articulated along with remedial measures to be undertaken during implementation. Risks of non-adherence to these obligations (notably as a result of data gaps) should be included in the plan\u2019s risk register. Step 10 As a final step, the results of the process outlined above shall be summarized in a DDR strategy. See further details in section 10.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "52088e0d-a276-477f-a8e1-81e9830df10e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 17, + "Paragraph": "8. Risk management \u2013 general guidance The implementation of DDR processes carries significant risks to all actors involved, from direct participants to donors, especially in contexts where there is active conflict. Therefore, planning such processes must include a robust risk management dimension, to ensure that all potential risks are identified and addressed both before and during implementation. The planning of DDR lends itself well to robust risk management in three ways: 1. The implementation focus: Risk management must be understood and used as an enabler of delivery, and not as a constraint or a restriction. As such, risk management reinforces the focus on implementation that drives DDR planning. 2. The consultation premium: Exposure to and comparison of different perspectives and worldviews on what constitutes a risk are necessary conditions of sound risk management. The breadth and depth of consultations required for risk management is consistent with the consultative process that underpins DDR planning. 3. The imperative of coordination and mutual accountability: In many areas, different risks involve different risk owners, and risk responses are often interrelated. These connections are particularly salient in DDR processes, with many actors responsible for managing separate but interdependent aspects of the DDR process; proper risk management therefore involves a degree of coordination and mutual accountability that can strengthen collective DDR efforts.", + "Can": true, + "May": false, + "Shall": false, + "Should": false, + "Must": true + }, + { + "ID": "6bbf2f32-5070-4a81-b09a-51d412c28585", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 17, + "Paragraph": "8.1 Standard risk management steps As with many other fields, the general approach to risk management in DDR planning should follow the general methodology provided by International Standards Organization 31000 on Risk Management. It consists of a simple but structured set of questions that can be summarized as follows: What is the context in which the DDR process is occurring? What are the objectives of the DDR process? What are the risks to the DDR process? What are the risk drivers? What is the level of each risk, as a function of the likelihood and consequence of its materializing? What are the right risk treatment measures for each risk, and are they already in place? Who owns each risk treatment measure? In following this structured line of inquiry, DDR planners should consider three critical dimensions: Specificity As DDR processes involve many actors and dimensions, it is important to be as specific as possible when identifying risks. Such specificity enables the identification of the right treatment measures and the most appropriate risk treatment owner. In particular, the plan should be as specific as possible in addressing the questions \u2018risk of what?\u2019 and \u2018risk to?\u2019 and should articulate the answers to both in straightforward risk statements. Example: The provision of reintegration support to identified participants and communities results in increased security threats (risk of) to DDR staff (risk to); the provision of cash to eligible recipients may trigger violent reactions from other individuals/communities. The specificity of the risk statement allows for specificity in the analysis of risk drivers (e.g., what generates the risks of and risks to). In the example, the risk drivers may include weaknesses in eligibility criteria and/or perceptions of unequal treatment by other communities. In turn, the more specific the risk drivers, the more specific and effective the treatment measures can be. In this example, appropriate ways to address the risk may include the provision of additional expertise to review the selection criteria, strengthening communication to other communities, and/or increasing security measures for DDR staff. These measures can reduce either the likelihood of the risk or the severity of its impact. A similar degree of specificity should apply to the owners of the treatment measures. For example, rather than assigning one risk treatment to the \u2018Government\u2019 or the \u2018UN\u2019, a DDR strategic plan should, to the extent possible, name the Government ministry or institution or the UN unit or entity that should treat the risk. Unintended consequences Risk management brings DDR trade-offs into sharp relief. For DDR practitioners, risk treatment measures often generate new, or \u2018second order\u2019, risks. For example, the increase in security measures (e.g., removing DDR staff from certain locations) will incur other risks, such as fiduciary risks, if the DDR process includes a transfer of financial resources in these locations, and/or programmatic risks if fewer capacities are on the ground to monitor if \u2018harm\u2019 is being done. Hence, in planning DDR processes and risk treatment measures, DDR practitioners should anticipate such second-order risks and establish systems for their proper monitoring.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "68c59ad1-ef27-46f5-9966-7d62b3d9798c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 19, + "Paragraph": "8.2 When to embed risk management in DDR planning Different moments in the planning of a DDR process provide an opportunity to identify risks and appropriate treatment measures. These include: The context analysis: At this initial stage, the intent is to begin identifying broad categories of risk factors (e.g., security, political dynamics) that may affect potential DDR processes. DDR planners should record them for further refinement later in the process. Design: As the DDR process is being formulated, a risk register can be gradually developed for each of the DDR process\u2019s strategic objectives, and for the overall process. For example, as mentioned in section 7, the definition of roles and responsibilities may reveal potential reluctance or resistance to the plan, which needs to be addressed prior to finalization. Finalization: Once all the elements of the process are brought together, the entire plan should be reviewed for risks. A stress-testing exercise should be conducted (see section 11). Implementation: Given the complexity of DDR processes, identified risks should be monitored throughout implementation, notably, through trend analyses of risk drivers (e.g., are the factors that generate risk increasing in intensity, in frequency?). Implementation will also inevitably yield previously unforeseen risks. As such, DDR practitioners should regularly create risk assessment moments to review existing risks and explore new ones, based on wide consultations.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "d644a7a3-a968-4a8a-905d-33e1ca9e715c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "9. Outreach \u2013 general guidance In any DDR planning process, the intent of outreach is to enable implementation by developing and strengthening wide support for the planned process, while reducing potential resistance. At the very beginning of the planning process, DDR practitioners shall therefore determine who needs to be engaged, when and for what purpose (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). The range of actors who need to engage in the planning should be broad and reflect the various needs, roles and capacities found in DDR processes. DDR practitioners should follow guidance provided in IDDRS 3.21 on DDR Process Stakeholders to make such determinations, including the potential interests of each actor. The outreach should have a specific purpose, which should be communicated clearly and effectively to each actor. To determine the purpose, DDR practitioners should use the following typology of engagement strategies as a guide: Information sharing: In some instances, an actor just needs to be provided the information about the DDR process being planned in order to understand it and support it. Joint fact-finding: In this case, an actor\u2019s buy-in can be secured by being involved in the analysis and data collection that underpins the planned DDR process. Consultation: Under a consultation, an actor is solicited for his/her views on the plan (or aspects thereof). It is important to clarify that the final version of the plan may not include all or any of the inputs solicited. Failure to do so may increase resistance to the plan. Agreement: In this case, the actor\u2019s formal approval is being sought for the plan to be finalized. Without such an agreement, the plan cannot move to implementation. In the broad constellation of DDR constituents, several will just need information. Others (e.g., national DDR commission, key donor, etc.) will require a formal agreement. For many, consultations are often sufficient, as long as they are conducted meaningfully and transparently at key moments of the planning process, including as the plan is being finalized. The determination of which engagement approach is most appropriate is context specific, but it shall account for a number of principles, including national ownership and the people-centred imperative, and other considerations such as the actor\u2019s expected role in the implementation of the DDR process(s) and ability to enable or undermine their success. Note on outreach risk: For the UN and its partners, the planning of DDR processes is often conducted under circumstances of high political pressure and expectations. DDR practitioners must manage expectations and avoid making promises to any actor, and must conduct such outreach with explicit references to the overarching principles that guide DDR processes, as articulated in IDDRS 2.10 on The UN Approach to DDR and in this module.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "9cfc22e3-6484-4cad-b0a9-1b4ff6c2549d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 20, + "Paragraph": "10. Planning document/DDR strategy \u2013 general guidance on structure The outcome of the strategic planning process should be reflected in a DDR strategy that should serve as the overarching framework from which more specific programmatic instruments derive. For the UN in particular, this document will therefore inform mission instruments (e.g., mission implementation plans, results-based budget) when a peace operation is deployed, and entity-level programme documents. The following list presents the standard hierarchy of planning documents, and where a DDR strategic plan would normally fit in such a hierarchy. Hierarchy of planning documents: UN peace operations UN Security Council Integrated Strategic Framework (ISF) DDR strategic plan Individual programme/process implementation plans by entities Results-based budget UN agencies, funds and programmes UNSDCF and/or ISF and/or Humanitarian Response Plan DDR strategic plan Joint annual work plans (which should reflect entity contributions to the DDR plan) Entity-specific programme documents (including joint programmes where relevant) The exact relationship between a DDR strategy and other formal UN planning instruments is determined by: Timing: A DDR strategy could be developed before or after an ISF or a UNSDCF, in particular. The exact timing should inform subsequent mutual revisions. Scope: A DDR strategy should apply to a wide range of actors beyond the UN. As such, it follows different procedures for design, consultation and finalization.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "fbaa2f1f-66b6-4bfa-845f-26f87fbf94e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "10.1 Content of the DDR strategy The development of the DDR strategy should take into account the possible existence of a higher-level document, such as a national DDR policy that may have been adopted, in certain legal systems, as a legislative act. The national DDR strategy will build on such a policy document, making sure to avoid overlaps and to provide strategic guidance to the development of programme documents (see IDDRS 3.20 on DDR Programme Design). To ensure wide buy-in for implementation and guide the development of more specific programmes, a DDR strategic plan should always provide the following minimum information, based on the process described in sections 6 and 7: 1. Summary of context and the rationale for a DDR strategy: This should include the authorizing frameworks (e.g., Security Council mandate, peace agreement, UNSDCF, etc.) for the DDR processes. 2. The universal and context-specific principles that underpin the strategy: activities. Universal (general) principles should be included (see IDDRS 2.10 on The UN Approach to DDR), but principles that are specific to the operating context and associated requirements should also be reflected. 3. The terminology, assumptions, evidence and data on which the strategy has been developed: Data gaps should be acknowledged, and the plan should articulate the impact of these gaps on strategic choices made and initiatives to address them. 4. The planned DDR process(s) organized around the DDR process: For each DDR measure, the strategy must formulate clear strategic objectives and common results, strategic implementation approaches to be used (including sequencing) and links with other DDR processes (e.g., SSR, mediation, economic development). 5. Main roles and responsibilities of national and international actors, and overall governance and coordination arrangements for the implementation and monitoring of the strategy: Where relevant, this section should explain the links between roles and areas/sources of support required by any actor. 6. Main operational considerations and requirements (see IDDRS 3.40 on Logistical Support for DDR for more details): This section should include operational constraints and challenges, and means to address them. 7. Funding framework: Based on an overall cost estimate, this should present anticipated sources of funding, disaggregated for each DDR measure, per strategic objectives and common results at a minimum. 8. Communication: The strategy should articulate the main communication principles, actions, audiences and messages, as well as roles and responsibilities; these will then be developed in the dedicated communication strategy (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). 9. Shared results framework: For the highest-level objectives, such as goal (impact) or outcomes, the document should include disaggregated results indicators, with baselines and targets, and means of verification (see IDDRS 3.50 on Monitoring and Evaluation of DDR for more details); this will become a seed for the results-based framework to be further developed as part of the programme design (see IDDRS 3.20 on DDR Programme Design). 10. Strategic plan risk register: As presented in section 8, the plan should acknowledge limitations and gaps and the treatment measures to address them. 11. Review process: Considering the risks inherent to DDR processes and the fluid environment in which DDR processes take place, the plan should clearly outline the time frame for regular reviews, and how these reviews will be organized (participants, methodology).", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "827237b3-9eb7-46b6-8941-37fe10f4d931", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 22, + "Paragraph": "11. General guidance for the finalization of strategic planning Planning DDR processes shall conclude with the following steps: Stress test Stress testing is a planning technique and moment that should be undertaken shortly before the end of the process, but with sufficient lag time before the plan is to be concluded to incorporate outcomes of the stress test into the final version. Under a stress test, a team of individuals, convened under a personal capacity, reviews the plan and subjects it to a number of \u2018hard questions\u2019. The purpose is to identify outstanding gaps, weaknesses and risks and to sharpen, if need be, the plan\u2019s logic and objectives. In other words, it provides an opportunity to improve the plan before implementation. For this exercise to work, it is important to convene a stress test team of four to five impartial individuals, without any vested interest in the content of the plan. As a team, these individuals should combine DDR process expertise with knowledge of the context and strategic planning skills. Conducted in a workshop format, in the presence of UN staff and partners who have developed the plan, the stress test team should interrogate the plan along the following dimensions: Robustness of contextual analysis and of evidence, data and assumptions used; Consistency between the analysis/assessment and the choice of DDR process, and the strategic objectives chosen; Suitability of the plan to context, and adaptability to different scenarios; Implementability of the plan, including resources, capacities, logistics, buy-in of actors and evaluability; Adherence of the plan to DDR principles and normative obligations, including gender, human rights and conflict sensitivity/do no harm; and Alternative courses of action. DDR practitioners engaged in DDR planning may also choose to conduct multiple stress test exercises throughout the process; however, for these exercises to be useful, a reasonably comprehensive draft of the plan must be available. The decision to incorporate the findings and observations of the stress test team into the final version lies with the DDR practitioners in charge of the plan. 2. Communication Communicating the DDR plan is an essential part of its finalization. In doing so, DDR practitioners must follow the specific guidance in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR, notably regarding adopting contextually and culturally appropriate means of communication and ensuring accessibility by the populations and communities most affected by the plan. Communication efforts must focus on transparency and accuracy, to avoid creating unrealistic expectations. To this end, how the plan is communicated, including local translations, must be closely managed to ensure that what is being said about the plan conforms with what is in it. Reactions to the plan should be closely monitored to identify potential risks of resistance and other obstacles to implementation. Careful consideration should be given to potential misperceptions and/or manipulation of the plan, its intent and content. Communicating the plan broadly and transparently to all concerned actors also serves to reinforce the principle of mutual accountability for its success. 3. Programmatic translation The finalization of a DDR process plan marks the activation of the next phase, in which the plan is translated into more specific programmes and their work plans, with detailed timelines and budgets. Guidance for both the process and content of such programmes is provided in IDDRS 3.20 on DDR Programme Design. As articulated in section 5, many programmatic elements can be developed as the strategic plan is being designed. However, in the timeline to actual implementation, some space must be created between finalization of the plan and implementation, during which specific programmes can be completed with additional programmatic and operational details. This time lag must also account for any need to mobilize resources before implementation.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "68419ffb-4a1a-45bb-b856-348bb9ead5d2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "12. Organizational considerations in DDR planning \u2013 general guidance The organization of a DDR planning process shall adhere to the following two imperatives: 1. Whole of UN and Whole of Practitioner approach: While there should clarity on the entity (and individuals) that will lead and coordinate the planning phase, it should be structured in a manner that provides a meaningful role for all UN entities, partners and Government institutions that may be expected to have a role in the process. In contexts where there is a UN mission with a DDR unit, the UN\u2019s engagement in the planning should not be confined to that unit; expertise from other units (including the political unit, legal, security sector reform, human rights, gender, child protection, mission support/logistics, the UN Mine Action Service, etc.) should be included. A number of UN agencies, funds and programmes need to contribute as providers of analytical inputs and normative advice, and/or as implementing entities. In contexts without a UN peace operation, the planning effort should avail itself of support from all relevant UN entities, including those in the Secretariat. It shall always ensure the inclusion of legal and dedicated normative expertise, notably in the areas of human rights, child protection and gender, sourced in-country or from regional and global offices. 2. Strong links with operations: DDR processes require careful and thorough consideration of operational requirements. Depending on the type of DDR process, dedicated planning capacities may be required for security, camp management, transportation and supply management. The planning team must also include expertise in funding instruments and resource mobilization.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "5694c52d-483e-40b6-a9fe-1b194597d857", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 24, + "Paragraph": "12.1 Structures The structures required for planning DDR processes are a function of the UN configuration in-country. If the planning is undertaken as part of the deployment of a new UN mission, the structures used for planning the DDR process and developing a strategic plan for DDR processes should follow the guidance provided by the Integrated Assessment and Planning Policy of 2013. DDR considerations will first be embedded in a strategic assessment mission, bringing together the entire UN system (from headquarters and as representatives of the UN country team). In most cases, and following the adoption of the mandate by the Security Council, a specific DDR technical assessment team may be deployed to further elaborate the DDR plan. For both the strategic and technical assessments, the principles of inclusivity and transparency shall be followed. Governments, communities, other relevant national actors and donors should be fully engaged, and, where and when capacities exist, national authorities should lead the process. Similarly, the UN country team should, at all times, participate in the planning process, under the leadership of the Resident Coordinator. Once the UN mission is deployed, the focus of any subsequent planning must reside in-country. For the UN, the relevant units of the UN peace operation and the members of the UN country team work jointly through a dedicated DDR task force. Headquarters-level support and engagement in the planning are undertaken by integrated task forces according to integrated assessment planning principles and approaches. In contexts without a UN mission, planning for DDR processes must always be situated in-country, under the leadership of the Resident Coordinator and with all relevant UN entities supported by their respective regional or global DDR expertise. In line with the reform of the UN development system, non-resident entities, as well as relevant Secretariat entities, should be included in DDR planning efforts. In all contexts, and wherever feasible, the design of the UN and its partners\u2019 responses to national DDR efforts should be undertaken on the basis of joint planning structures. To minimize transaction costs, DDR practitioners may want to organize the planning process around three generic structures: A broad steering committee, with Government and key stakeholders (notably donors) to build the political and financial support for the outcome of the planning process; actors in related sectors (e.g., SSR, mediation, economic recovery) may be brought in periodically to ensure adequate linkages with the DDR planning process. A small core planning team or secretariat, to undertake the day-to-day planning work, including the analysis, with clear lines of communication with national counterparts. A more informal consultative mechanism (which can be replicated at local or regional levels, or divided into different stakeholders) to solicit perspectives, feedback and inputs; this mechanism can enable informal outreach to other, higher-risk parties (e.g., non-signatory groups) and gauge their positioning in relation to the envisioned processes.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "c313e324-f27f-4beb-887b-6de043d750d7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction ISF \tIntegrated Strategic Framework SSR\tsecurity sector reform ToC\ttheory of change UNSDCF\tUnited Nations Sustainable Development Cooperation Framework", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "bc949694-9109-4469-a63b-58a273783f4f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...3 1. Module scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.4 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.4 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20265 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u20266 4.1 Voluntary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u20266 4.2 People centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20267 4.2.1 Criteria for participation/eligibility \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u20267 4.2.2 Unconditional release and protection of children \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u20267 4.3 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026.8 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 8 4.5 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20269 4.6 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20269 4.6.1 Flexible, sustainable and transparent funding arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.9 4.6.2 Accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 ..9 4.7 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..10 4.8 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u202610 4.9 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u202610 4.10 Well planned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u202610 4.10.1 Planning, assessment, design, monitoring and evaluation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u202611 4.11 Public information and community sensitization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026..11 5. The primacy of politics in the SSR-DDR nexus \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.11 5.1 Adequately reflecting DDR/SSR questions into mediation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...11 5.2. Creating entry points \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.12 5.3 Adopting a broad view of security sector governance \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...12 5.4. Bringing technical knowledge and concrete examples to the mediation process \u2026\u2026\u2026\u2026\u2026.13 5.5. Ensuring that DDR/SSR questions are linked to political and economic chapters of the peace agreement \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202613 5.6. Defining the role and mandate of technical commissions and bodies with planning and mediation mandates in the peace process and beyond \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202614 5.7. Risks of deferring agreements on future security governance architecture \u2026\u2026\u2026\u2026\u2026...\u2026...14 5.8. Considering the role of the private sector \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...14 5.9. Supporting temporary and transitional security arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.15 6. Joint DDR and SSR support to the integration of former combatants into the security sector...15 6.1. The role of political frameworks and processes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...16 6.2. Understanding the scope of integration through a political lens \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202616 6.3. Integrating Gender in integrated DDR/SSR support \u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...17 6.4. Registration of individuals joining the integration process \u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.....17 6.5. Vetting as a step in the integration process \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u202618 6.6. Vetting of former combatants against professional eligibility criteria \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026..18 6.7. Recognizing risks during the design and execution of integration processes \u2026\u2026\u2026\u2026\u2026\u2026\u202618 6.7.1 Neglecting the link between military and police integration and reform \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u202619 6.7.2. Undermining the development of people centered policing \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u202619 6.7.3 Contributing to a security vacuum \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u202619 6.7.4 Increasing protection risks to communities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202620 6.7.5 Integration as a political bargaining chip \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..20 7. DDR-related tools as an entry point and catalyst for SSR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u202620 7.1 Transitional weapons and ammunition management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026..20 7.2 Weapons and ammunition integration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.21 7.3. Integrated DDR and SSR assessments at the local level \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...21 7.4 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026..\u2026 22 7.4.1 Concurrent SSR and CVR programming \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u202622 7.4.2 Sequential CVR and SSR programmes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..22 8. Reintegration of former combatants into civilian life and linkages to SSR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...22 8.1. Reintegration assistance for individuals found to be ineligible for integration against professional eligibility criteria \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026..23 8.2. Reintegration programmes in support of government-led efforts to decommission security personnel following war-time military mobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20263 8.3 Reintegration assistance versus separation benefits and pensions \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u202624 9. DDR, SSR and cross-cutting issues \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..24 9.1. Adopting a national funding lens for DDR and SSR programmes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 24 9.2 Integrated approach to partnerships \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026..25 Abbreviations \u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026.\u202625 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.\u202625 6.10 DDR and Security Sector Reform", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "5ee8f893-b0fa-4b37-89bf-2df1182a1d31", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "Summary DDR and security sector reform (SSR) are inherently political processes that, in a post-conflict environment, are typically closely linked. However, there are important differences in the focus, scope and timeline of DDR and SSR processes. While DDR focuses on finding solutions for armed groups and their members in conflict-affected and post-conflict contexts that have seen high levels of military mobilization, SSR processes aim to develop and rebuild a wide range of institutions, processes and mechanisms that would re-establish the functioning of an effective and accountable security sector under the control and oversight of a civilian government and institutions. There are many points of natural intersection between DDR and SSR. DDR processes are typically linked to SSR through the integration of former combatants into the security sector in the context of a peace agreement. Equally, DDR-related tools, including community violence reduction (CVR) and transitional weapons and ammunition management (WAM), can provide bottom-up, people-centred complements to top-down SSR processes. Finally, reintegration support can also be provided to former combatants who wish to enter the security sector but are found to be ineligible or for integration into security institutions. The most prominent linkage between DDR and SSR in post-conflict contexts is to be found in integration processes. It is generally accepted that the failure or relative success of any integration process will have a significant impact on the durability of peace accords and the probability of relapse into conflict. When considering the linkage between DDR and SSR, DDR practitioners shall always seek to understand national and local aspirations, as expressed through political dialogue, rather than attempt to impose externally defined and developed processes on national actors. DDR practitioners shall seek to integrate SSR issues into DDR assessments and, as DDR and SSR often operate on different timescales, shall ensure that DDR processes are undertaken in ways that do not hinder or block subsequent or future security sector reform. One example is the support to the establishment of transitional security arrangements that primarily involve former combatants and that are intended to pave the way for long-term security institutions and governance arrangements. Experience has shown that support to the establishment of temporary and transitional security arrangements, in particular, has to be carefully balanced against the need to use limited political and financial resources to reach sustainable political and security solutions. Equally, practitioners need to ensure that demands of armed groups that are deemed to reflect root causes of the conflict, such as political and economic exclusion, abuse and discrimination stemming from the security sector, are accounted for when designing the SSR process. The failure of any integration process can significantly impact post-conflict environments by threatening peace and security, and the durability of peace accords. Importantly, when discussing opportunities involved in DDR with former or current members of armed forces and groups, including women, men, and youth, DDR practitioners shall not imply any individual entitlement to integration into the security sector, especially not merely because of the individual\u2019s status as a former member of an armed force or group. Instead, DDR practitioners should be aware of the existing legal and policy framework, and ensure that they understand the status of the SSR process and how it may or may not relate to demands, grievances and/or questions raised by armed groups. Integration processes are typically based on political agreements. Yet DDR-related tools are sometimes undertaken in the absence of such agreements \u2013 making it challenging to develop the right linkages to the SSR process. Even where political agreements exist, provisions on integration and related rights/entitlements of former combatants are often vague and may require additional and ongoing negotiations, if they are to be translated into policies and plans for SSR processes. Where possible, the peace agreement should outline specific provisions on the integration of both males and females into representative and inclusive security sector institutions. Action should be taken to ensure the full, equal, meaningful and effective participation of women in both DDR and SSR processes and in all decision-making settings, and, when a DDR programme is linked to integration into the security sector, women shall be given the same opportunity to integrate as men.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "cafa8fd4-ae4b-4e11-bd0e-1b59c7370c80", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 4, + "Paragraph": "1. Module scope and objectives This module provides DDR practitioners with an overview of areas where DDR programmes, DDR-related tools and reintegration support may be linked to SSR. The objective is to support close coordination between DDR and SSR efforts by actively promoting synergies and preventing harmful interactions in the planning, design and implementation of DDR and SSR processes. The guidance is applicable to both mission and non-mission settings.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "2df508f8-82b9-47fb-acfd-d44b02942ef5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 4, + "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Integrated DDR processes are composed of different combinations of DDR programmes, DDR-related tools and reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Security sector is a broad term often used to describe the structures, institutions and personnel responsible for the management, provision and oversight of security in a country. It is generally accepted that the security sector includes defence, law enforcement, corrections, intelligence services and institutions responsible for border management, customs and civil emergencies. Elements of the judicial sector responsible for the adjudication of cases of alleged criminal conduct and misuse of force are, in many instances, also included. Furthermore, the security sector includes actors that play a role in managing and overseeing the design of security, such as ministries, legislative bodies and civil society groups. Other non-State actors that could be considered part of the security sector include customary or informal authorities and private security services. Security sector reform describes a process of assessment, review and implementation, as well as monitoring and evaluation, led by national authorities that has as its goal the enhancement of effective and accountable security for the State and its peoples without discrimination and with full respect for human rights and the rule of law. Integration into the security sector refers to the process through which former members of armed forces and groups are incorporated into the national security structures and institutions responsible for the management, provision and oversight of security in a country. Rightsizing occurs when the number of personnel within the security sector is adapted (increased or reduced) to match the needs of the security sector, as defined through national consultations and assessments.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "e479da79-358b-4c7d-83b7-aa24ca82bc78", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 5, + "Paragraph": "3. Introduction The provision of security is a core function of the State. However, in some contexts, the statutory security sector is not able to protect the population against threats, and may marginalize, exclude or even prey on the very populations it is entrusted to protect. If the national security sector is corrupt, non-inclusive, unresponsive, incoherent, ineffective, inefficient and/or unaccountable to the public, the sector may be considered among the root causes of conflict \u2013 and, as such, could also be among the factors that led to the emergence of armed groups. In a post-conflict context, security sector reform offers an opportunity to address shortcomings of the security sector that may have contributed to the conflict and that increase the risk that the country will relapse into conflict if not addressed. \t It is important to understand the overarching political framework that will define and drive DDR and SSR processes, and the entry points as well as limitations that these frameworks present for addressing DDR- and SSR-related challenges. Relevant political and security frameworks, agreements, strategies and plans will typically also define the way in which DDR and SSR processes interlink in that particular context. In (post-)conflict settings where a peace agreement was signed or a political settlement reached, the agreement will typically outline the objectives, scope and possibly timelines of DDR and SSR processes. DDR may contribute to SSR and vice versa; neither is a prerequisite for the other, and SSR and DDR processes often operate on different timelines. Yet, while certain aspects of the SSR and/or DDR process may be defined in detail, sensitive provisions that link DDR to SSR, such as the integration of combatants into the security sector, are often left to further negotiation, while only temporary and transitional security arrangements are defined in the peace agreement. It is important to keep in mind that nationally led SSR processes will result in national decisions on the mandate, structure and composition of security sector institutions. National SSR decisions will typically be reflected in national security policies, strategies and legislation and will effectively translate (often vague) SSR provisions from peace agreements into national policy and legal frameworks. This is a deeply political process that will unfold over the course of many years and that has the potential to transform the power relations and representation of societal groups in the security sector over time. If political and security-related demands made by armed forces and groups that were contained in the political and/or peace agreement preceding the national SSR process are not sufficiently integrated into the SSR process, this may pose a significant risk for relapse into conflict. Therefore, it is critical that UN DDR, SSR and political experts \u2013 in cooperation with key partners \u2013 maintain close dialogue and coordinate to ensure that UN support is targeted at addressing structural risks within the security sector. For armed groups and their members, this will often be expressed in exclusion and underrepresentation in the security sector and lack of access to associated economic benefits. Keeping with the principle that UN support must be guided by the primacy of political solutions when designing UN support strategies, the linkages between DDR and SSR will be presented in two large categories. First, section 5 will consider the issues that are most directly linked to the peace process and have the highest impact on advancing the political process, reconciliation and sustainable peace. These issues revolve around implementing provisions of the peace agreement and ensuring that the SSR process results in more inclusive, accountable and responsive institutions. The second set of issues, addressed in section 6, deals with programmatic tools and approaches (employed by DDR and SSR practitioners) that present important entry points for institutional reform and build trust as well as critical capacity for future peace.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": true + }, + { + "ID": "22fc1664-69ff-4d60-a62d-0e912b992a08", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 6, + "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and SSR.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "cb026e15-039d-4046-b0d4-a4ad6e85ef83", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "4.1 Voluntary In contexts where a DDR programme is linked to SSR, the integration of former members of armed forces and armed groups into the security sector shall be voluntary.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "213ce9b8-b3f2-44fa-adae-15d000300500", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 6, + "Paragraph": "4.2 People centred The basis for the legitimacy, viability and sustainability of the reform and governance of the security sector in a specific national context lies in the expressed needs and visions of the people; this shall be the core driver of any SSR process.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "af549190-9d89-433d-a3b7-a8b7c55f39b3", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "4.2.1 Criteria for participation/eligibility When a DDR programme is linked to SSR, male and female former members of armed forces and groups shall only be integrated into the reformed security sector if they are vetted and meet the designated integration criteria (see section 6.5). A former member of an armed force or group shall not be integrated into security sector institutions merely because of his or her status as a former member of an armed force or group. It should be noted that integration is sometimes organized within the framework of broader recruitment campaigns, whereby certain quotas are assigned for those who are being integrated during each recruitment campaign. The criteria for those to be integrated in the framework of a recruitment campaign may differ from those of regular recruits. The primacy of politics and need to address the root causes of conflict, such as exclusion, should take precedence, and technicalities should not be cited to prevent the integration of former combatants that has been agreed to at the political level. Understanding the vital role that females can play in the security sector is paramount to successful, inclusive SSR processes, and to the full representation of women in the security sector in support of the implementation of Security Council resolution 1325 (2000). Integration processes should therefore ensure the eligibility of women, and include outreach and sensitization to ensure they are aware of their options and eligibility. SSR practitioners and support to SSR programs should ensure reformed security institutions provide fair and equal treatment to female personnel, including their special security and protection needs. Security sector reform takeholders should pay particular attention to children. Children shall not be recruited into security sector institutions. When undertaking security sector reforms, States shall mainstream child protection, including through the inclusion of child protection in military training and standard operating procedures, as well as through the establishment of child protection units and focal points in their national security forces and the strengthening of effective age assessment mechanisms to prevent underage recruitment into security sector institutions (see IDDRS 5.20 on Children and DDR). Members of armed forces and groups who have been involved in the commission of war crimes, crimes against humanity, genocide and/or gross human rights violations shall not be eligible for recruitment into the security sector, including when DDR programmes are linked to SSR (see IDDRS 2.11 on The Legal Framework for UN DDR).", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "386befa8-c494-47d6-aa92-8dbb833eadff", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 7, + "Paragraph": "4.2.2 Unconditional release and protection of children All child recruitment or use by armed groups is illegal under international law, as is all use of children in hostilities, conscription by State armed forces or voluntary recruitment under the age of 18 without minimum safeguards. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child protection. This is expressed in a comprehensive set of international legal instruments, including the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Rome Statute, and is reinforced by a series of Security Council resolutions. For a detailed normative and legal framework, see IDDRS 5.20 on Children and DDR. Efforts to prevent the recruitment and use of children by armed forces and groups should be a primary consideration during all DDR and SSR processes, irrespective of the stage of the conflict or status of peace negotiations. When a DDR programme is linked to SSR, children associated with armed forces and groups shall not be included in troop numbers because their presence is illegal, and including them may encourage further recruitment of children in the period before peace negotiations. Negotiations on DDR, SSR and force reduction shall include the unconditional and immediate release of all children associated with armed forces and groups. Progress should be made by armed forces and groups on child release before SSR processes are initiated, and the requirement that children be released without precondition prior to negotiation on integration into armed forces and/or the security sector should be stipulated and enforced to discourage their recruitment. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible. Children associated with armed forces and groups should be treated separately from adult combatants. They should benefit from special protection and assistance measures that are gender and age appropriate. They should be regarded and treated as victims, regardless of how they were recruited, and their best interests need to be a primary consideration. International legal standards pertaining to children shall be applied (see more in IDDRS 5.20 on Children and DDR).", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "0431cbb5-7ade-42cc-8e7b-039a0f6c2b72", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 8, + "Paragraph": "4.3 Gender responsive and inclusive Women and men have an equal right to participate in security delivery and oversight. Though men continue to be vastly overrepresented in security and oversight bodies (such as parliament and the judiciary), security sector institutions that reflect societies at large in terms of sex, ethnicity, tribal affiliation, religion and sexual orientation are more likely to be trusted and considered legitimate. Women\u2019s presence will also increase the responsiveness to the concerns of the entire population. The increased participation of women in security sector institutions has been shown to improve these institutions\u2019 functioning in areas such as sexual and gender-based violence (SGBV) reporting rates, intelligence gathering and the treatment of female witnesses, victims and suspects. The involvement of women and women\u2019s groups from civil society in the SSR processes that accompany and follow DDR should also be deliberately planned from the start. Gender-responsive DDR recognizes that women play a multitude of roles, including as combatants, advocates and caregivers, and that each of these roles has a direct impact on the success of DDR processes. Including women as participants and decision-makers in DDR and SSR processes ensures benefits to individuals, households and communities.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "d34eb36c-4952-48f2-aa65-225dde3df101", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 8, + "Paragraph": "4.4 Conflict sensitive SSR and DDR processes shall be undertaken in a conflict-sensitive manner, ensuring that, when DDR and SSR are programmatically linked, this linkage does not increase the risk of further conflict or the risk that DDR and SSR will jeopardize each other. As DDR and SSR impact local power structures, sovereignty and national security issues, practitioners shall understand, acknowledge and anticipate any possible adverse effects.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "207fd172-fb6e-4aff-97f1-a323f5da1f9e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 8, + "Paragraph": "4.5 Context specific Many contextual factors influence DDR and SSR, including local power dynamics, the way in which the armed conflict ended, and the nature and interests of central State authority. Given the context-specific ways in which DDR and SSR can influence each other, there is no ideal model for DDR and SSR processes. If and when DDR and SSR are linked, this linkage shall be tailored to the particular context. The politically sensitive nature of decisions relating to DDR and SSR means that external actors must pay particular attention to both the form and substance of their engagement. Close understanding of context, including identification of key stakeholders, is essential to ensure that support to national actors is realistic, culturally sensitive, inclusive and sustainable. Externally driven pressure to move forward on programming priorities will be counterproductive if this is delinked from the necessary political will and implementation capacity to develop policy and implement programmes at the national level. 4.6", + "Can": true, + "May": false, + "Shall": true, + "Should": false, + "Must": true + }, + { + "ID": "888b2801-21dd-4383-a73b-c6a3bfe45782", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 9, + "Paragraph": "4.6.1 Flexible, sustainable and transparent funding arrangements Planning for DDR and SSR processes must be flexible and responsive to changing conditions on the ground, but should also keep in mind the need to balance funding for short-term programmes with the long-term costs of reforms required to sustain peace and facilitate development and the achievement of the Sustainable Development Goals. Simultaneous (yet separate) funding arrangements for DDR and SSR may be considered, although caution shall be taken to ensure that funding delays in one area do not lead to implementation delays in another. To avoid implementation delays, the use of multi-donor trust funds that address both DDR and SSR may be considered. Funding should ensure that the needs of women, children and youth are addressed to sustain the long-term success of DDR and SSR processes.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "427edc7a-bb04-4fe2-870f-4bcca3f86757", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 9, + "Paragraph": "4.6.2 Accountable and transparent DDR and SSR processes should contribute to accountable and transparent security sector governance, including transparency in security sector finances. They should not only focus on improvements to the operational capacity of security sector institutions, but also aim to reinforce the accountability of security-providing institutions to the executive branch, legislature and judiciary; independent oversight bodies; and civil society. Effective security forces, such as the armed forces and police, are accountable to the populations they serve and require staff that act with professionalism and integrity. To ensure this, vetting processes based on transparent criteria shall be conducted and constitute an important link between DDR programmes and SSR (see section 6.5 and 6.6).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "20ab6d28-65c9-4373-9007-0bc4fe331831", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 9, + "Paragraph": "4.7 Nationally and locally owned Practitioners shall facilitate DDR and SSR processes that are nationally and locally generated through political consensus, rather than attempt to bring national actors into processes that are externally imposed. SSR and DDR processes should be underpinned by an inclusive national dialogue process in order to ensure that the needs and security perceptions of the State and its citizens are taken into account. These consultations should be wide-ranging and include authorities at various levels, from all branches of Government and security sector institutions, as well as national human rights institutions and civil society \u2013 especially women\u2019s and youth groups and child protection advocates. Such dialogue should take into account the fact that security and insecurity are often defined and experienced differently by women, men, boys and girls, as well as members of minority groups. The broader the national constituency engaged in SSR, the better the prospects for sustainability. To further support national and local ownership, where necessary and appropriate, DDR practitioners shall support activities that build the capacity of national and local authorities to manage, implement, monitor and evaluate DDR and SSR processes. National ownership should, where possible, also be demonstrated through commitments of human and financial resources from the State budget.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "8896cae6-c417-4e6f-ac21-f09f373933e0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 9, + "Paragraph": "4.8 Regionally supported Where appropriate, DDR practitioners shall account for regional dynamics in their planning and analysis. Many of the challenges that impact SSR and DDR in a country are transnational in nature, including trafficking in humans, drugs and weapons (see IDDRS 6.40 on DDR and Organized Crime). If armed conflict is ongoing in neighbouring States, (former) members of armed groups may cross international borders either to join a new armed group or to attempt to access ongoing DDR and SSR processes. While SSR and DDR are always guided by the principle of national ownership, practitioners should consider dedicated programmes to mitigate risks stemming from regional dynamics. For example, capacity-building in border management can support DDR and SSR processes through restricting the movement of combatants and arms across borders.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "31c2ec89-4e31-4781-beed-fecfd880b4bb", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 10, + "Paragraph": "4.9 Integrated Where possible and appropriate, DDR and SSR processes shall be integrated with complementary efforts to promote immediate and long-term improvements in security and security sector governance. DDR and SSR processes shall always be integrated into wider political processes and should also be integrated with arms control efforts, mine action and/or initiatives to redress past crimes and promote reconciliation through transitional justice (see IDDRS 4.11 on Transitional Weapons and Ammunition Management and IDDRS 6.20 on DDR and Transitional Justice). In countries emerging from armed conflict, linkages should also be made between national security policies and strategies (developed as part of an SSR process), support to reintegration (through a DDR process) and wider national-level development frameworks and priorities.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "76a5c111-d2ee-4ef4-8685-2c899edceb0f", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 10, + "Paragraph": "4.10 Well planned Both DDR and SSR practitioners shall integrate concerns specific to their respective programmes within assessments, planning and process/programme design. In doing so, they are encouraged to use existing assessments (e.g., Joint Mission Analysis Centre products, an Integrated Strategic Framework or United Nations Development Assistance Framework, or Human Rights Due Diligence Policy risk assessments) and coordinate with relevant components in assessment, planning and process/programme design. They shall also clearly define the scope of activities that should link to a realistically achievable DDR/SSR end state. Planning should be participatory and engage a wide range of stakeholders. Monitoring and evaluation should provide an entry point for reviewing DDR and SSR processes to ensure that they are planned in a mutually supportive manner, and that unintended consequences are assessed and DDR/SSR objectives and priorities are adjusted accordingly. Baseline data should be collected and continuously updated and disaggregated by sex and age, where possible. Further gender and age analysis should be integrated into the monitoring and evaluation strategy, where applicable. For further information, see IDDRS 3.50 on Monitoring and Evaluation.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "6b179c53-0b4d-4c18-8a9b-138c7b8dc9a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 10, + "Paragraph": "4.11 Public information and community sensitization The timing, sequencing and implementation of DDR and SSR processes should be supported by a public awareness campaign to build the confidence of all relevant stakeholders (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In order to (re-)establish trust in public institutions, the public must be aware of and trust the institutional reform effort. Transparency about reform efforts and broad consultation about the objectives of the reform will help to build confidence in the impartiality and effectiveness of the process and reduce uncertainty among those affected by the reforms. In particular, public awareness can help to deter mis/disinformation campaigns hampering the reforms at their inception phase and pre-empt later attempts to cast doubt on the validity of the DDR and SSR processes and block it.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "59a271ef-0bfa-4948-ace0-d68f00e428d8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 10, + "Paragraph": "5. The primacy of politics in the SSR-DDR nexus This section highlights areas where DDR and SSR processes link to highly sensitive political dynamics affecting the balance of power and distribution of resources among different actors in a given context. It is important that UN support to DDR and SSR is well integrated in these contexts and geared towards addressing structural risks and root causes of conflict that can be found in the security sector and its governance structures. This section considers the context of peace processes and mediation and adopts a broad view that SSR and DDR should be designed and used to effectively end conflict and prevent its recurrence through political engagement and structural prevention that address deep-seated grievances related to the security sector.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "c4327eb3-88fd-4068-9288-45b80af6ad94", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 11, + "Paragraph": "5.1 Adequately reflecting DDR/SSR questions in mediation Where possible, both DDR and SSR practitioners should be available to support mediators engaged in the negotiation of peace agreements. SSR and DDR experts should also advise mediators engaged in conflict prevention by highlighting structural risks within the security sector and supporting dialogue with armed groups.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "829c8871-1bf9-4d9a-9cdb-13c9e871aaae", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.2 Creating entry points that allow SSR/DDR processes to evolve beyond narrow provisions of the written agreement The most impactful linkage between DDR and SSR in peace agreements often pertains to provisions that determine the scope, process and modalities under which former combatants will join statutory security forces that will emerge as a result of the peace agreement. Advice to mediation should highlight the importance of including inclusive as well as age- and gender-responsive DDR and SSR language in the peace agreement. When the integration of male and female former members of armed forces and groups into the security sector is being considered, mediators or those providing advice to them should, if the political circumstances of the negotiations permit, encourage the inclusion of specific provisions in the peace agreement outlining the broad parameters of integration, including considering specific quotas for females and requiring vetting and personnel reform of the security sector. Such provisions place an unambiguous obligation on the negotiating parties that is difficult to later circumvent. Importantly, the explicit commitment to include women in the security sector may create an entry point to incorporate other underrepresented social groups and enhance the inclusivity of security institutions and their responsiveness to the needs of a diverse population.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "0911d7b5-980a-46db-8585-6ac24a2e162e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.3 Adopting a broad view of security sector governance \t In his report on security sector reform (S/2022/280), the Secretary-General adopted a wide understanding of security sector governance that goes beyond State institutions. This is important for SSR and DDR practitioners who are assessing the security sector with a view to developing options for SSR and DDR in conflict settings. As the Secretary-General noted, armed groups need to be considered part of security sector governance alongside other actors, even though they are not part of the statutory security sector. Understanding the role of armed groups in local, regional and national security dynamics is critical to developing realistic and sustainable options for SSR. Where armed groups play a strong role in the protection of specific ethnic and/or religious communities, mediation should focus on political and economic governance issues and their intersection with the security sector. Focusing on the composition of security institutions alone may not address underlying drivers of insecurity and conflict. Understanding the nature of insecurity and gaps in the overall institutional architecture is important and may facilitate agreements that go beyond the military and police. Considering the need for establishing people-centred security is important for strengthening the resilience of local communities and facilitating their capacity development to address fires, natural disasters, health emergencies, etc. Recognition of these needs may trigger the establishment of new institutions or lead to orienting existing ones towards peacetime tasks.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "990933c9-7f60-4dff-aa7d-e7fbf5e06996", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.4 Bringing technical knowledge and concrete examples to the mediation process SSR/DDR experts involved in mediation processes should have not only a deep understanding of the parties and their expectations, positions and demands, but also solid knowledge of technical details of comparable DDR/SSR processes, including their planning assumptions, planned versus real implementation timelines, assumed and real costs, gender mainstreaming, considerations related to unconditional release of children, and previous DDR and/or SSR processes in the given context. Injecting such technical expertise into the dialogue may assist the parties in reaching more realistic agreements and avoiding pitfalls typically experienced in other contexts. Within mediation processes, SSR and DDR issues will often be discussed in the framework of a security-related mediation track. While this is positive, it will also be important that DDR/SSR experts are aware of other mediation tracks, in particular those pertaining to political, economic, human rights and justice issues, as DDR- and SSR-related issues need to be integrated into such discussions to avoid contradictions that may frustrate implementation.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "342a2c0d-7f25-4199-afdf-334842be4da9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.5 Ensuring that DDR/SSR questions are linked to political and economic chapters of the peace agreement The key dilemma faced by parties when negotiating SSR provisions of a peace agreement in many cases has to do with the long-term nature of reforming and developing a new security sector architecture. DDR, on the other hand, typically has a shorter time horizon, and there may be pressure to implement DDR early on, even when necessary preconditions are not in place. Therefore, an important question for mediators is how much detail on SSR/DDR is sufficient to facilitate the transition from conflict to sustained peace, and if/how those processes should be sequenced, including in relation to broader political processes. If we accept that an imperfect peace agreement is better than none, it is reasonable to omit specificities on SSR in favor of general commitments that reforms will ensure transformative outcomes, such as inclusiveness, democratic oversight and accountability. Increasingly, the practice has been that questions about the future of the security sector are assigned to technical bodies to deliberate and develop options, including on questions of integration of former combatants, for political leaders\u2019 decision-making. While this may indeed be the only option available to mediators in some circumstances, it is important to consider possible challenges for the peace process.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "f0ccb85c-3656-47f4-85fc-7f4b720e7d23", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.6 Defining the role and mandate of technical commissions and bodies with planning and mediation mandates in the peace process and beyond Practice has shown that technical commissions created to develop proposals and reach agreement on outstanding questions of the SSR process often fail to deliver satisfactory agreements even after years of deliberations. The indication of clear timelines and targets for the work of SSR- or DDR-related technical bodies and committees should be included in the peace agreement, but even when included, it is often insufficient to push the process forward. The absence of a political agreement on security sector reform may also raise the stakes for the holding of post-conflict elections. It is therefore important to consider possible implications of sequencing different steps of the SSR and DDR processes and other major political and economic milestones in the peace agreement. In some contexts, the warring parties may agree that assessments (such as a threat assessment and security sector review) and national dialogue should take place only after national elections have been held. In other contexts, the parties will demand that agreement on major security policy and architecture issues (type, size, hierarchy and governance arrangements) are agreed upon and possibly included in a new constitution before elections are held. The challenges and opportunities of both options should be presented to the mediator and carefully considered. Once elected into office, new Governments will legitimately control security ministries and adopt strategies for security sector reform that may not sufficiently reflect former opponents\u2019 security needs and interests, thus raising the risk of relapse into conflict. The existence of SSR/DDR commitments stemming from a peace agreement can serve to protect the interests of former members of armed forces and groups but may also lessen pressure on the new Government from security or political constituents who may oppose the implementation of challenging reforms, such as the integration of former combatants into the security sector. A possible way of addressing this risk is to ensure that progress on both DDR and SSR is kept high on the agenda of senior UN leadership and partners, and that such progress is linked to international support for SSR and DDR, as these processes must be grounded in inclusive national agreements.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "099e27c3-10a9-4ab7-9a13-bdcbd3941163", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.7 Risks of deferring agreements on future security governance architecture Armed forces and groups often fuel their activities by assuming control over resource-rich territory or may have access to funding from taxing the local population or illegal cross-border trafficking (see IDDRS 6.40 on DDR and Organized Crime). Sources of income that are linked to control over territory present strong incentives to maintain the status quo and will impact the scope of realistic options that mediators can offer to armed groups. Current resource revenues can prove relatively more attractive than the benefits offered through a DDR and/or SSR process and, as a result, individuals and groups may opt not to join DDR. Similarly, armed groups may agree to integrate into the armed forces but only on the understanding that they will be deployed to a specific geographical area. If such details were not discussed during mediation, provisions on integration may be rejected in full once the time comes for implementation, potentially undermining years of progress. Peace agreements that do not effectively address the role of natural resources risk leaving warring parties with the economic means to resume fighting as soon as they decide that peace no longer suits them. In contexts where natural resources fuel conflict, DDR and SSR processes should be planned accordingly. Where appropriate, DDR practitioners should advise mediation teams on the impact of militarized resource exploitation on DDR and SSR, and recommend that provisions regarding the governance of natural resources be included in the peace agreement and reflected in its political and economic chapters (see IDDRS 6.40 on DDR and Organized Crime and IDDRS 6.30 on DDR and Natural Resources). Beyond mediation, the design of DDR processes in this context should be integrated with strategies that address the security governance of natural resources, as well as the economic reforms aimed at ensuring the transparent and accountable allocation of natural resource concessions and the transparent management of the revenues derived from their exploitation.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "0e534a76-ccff-401b-b0aa-41eed75c4375", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.8 Considering the role of the private sector Former combatants are a natural target for private security companies. In some instances, members of armed groups leave to directly join private security firms, bypassing DDR. The line between a private security firm and an armed group is often blurry. Security sector reforms, such as the enactment of laws, can be useful to ensure that private security providers are regulated.", + "Can": true, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "c2d8376f-2f5e-442f-ab77-e5d54c5ce162", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "5.9 Supporting temporary and transitional security arrangements Considering that temporary and transitional security arrangements are often largely composed of combatants and armed group members, support to such structures will typically be provided by DDR practitioners. It is important to always keep in mind that the goal of such support must be to build trust and facilitate reaching sustainable political agreements that would allow such temporary arrangements to evolve into long-term and sustainable security governance structures. The Secretary-General has cautioned that UN support to temporary and transitional security arrangements should only be short-term in nature and that main efforts should focus on finding solutions that will underpin long-term security sector architecture at all levels. Where temporary security arrangements are functioning well, it is critical that options for legitimizing and institutionalizing such arrangements is supported early on, including through their inclusion in national security policy and planning frameworks, and provisions in the national budget. The close cooperation between DDR, SSR practitioners and the political leadership of the United Nations is critical in ensuring a timely and sustainable transition from transitional arrangements to longer-term solutions that can sustain peace and prevent relapse into conflict. If political and security-related demands by armed groups that were contained in the political and/or peace agreement that preceded the national SSR process are not sufficiently integrated into the SSR process, this may pose a significant risk for relapse into conflict. Therefore, even if temporary arrangements are working well as a \u201cholding pattern\u201d for former combatants, it is critical that UN DDR, SSR and political experts \u2013 in cooperation with key partners \u2013 maintain close dialogue and coordinate to ensure that UN support is targeted at addressing structural risks within the security sector. For former combatants, this will often be expressed in exclusion and underrepresentation in the security sector and lack of access to associated economic benefits.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "66b82a70-88a8-4dae-b9cf-363a921b84fb", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6. Joint DDR and SSR support to the integration of former combatants into the security sector The integration of former combatants into the security sector is a process that is complementary to DDR. It offers former members of armed forces and groups a path to becoming part of the State\u2019s security apparatus. Integration is primarily a political process, and its success will often also determine the long-term success of SSR and peacebuilding efforts in the aftermath of conflict. Integration brings with it complex technical questions and significant financial costs. Where an integration process is underway, it inevitably requires that the affected security forces, command, management and oversight bodies are adapted and restructured to deal with the inflow of new personnel. There are different models and approaches to integration, yet their success ultimately hinges on the degree to which a particular modality is aligned with underlying political, security and financial incentives of former combatants, while also preserving and strengthening the institutional integrity and effectiveness of security forces. This section addresses some overarching aspects of integration that should always be considered when planning and implementing a security sector integration process.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "f0901e7f-7795-4f29-a56b-162b34850cd7", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.1 The role of political frameworks and processes Traditionally, peace agreements contained detailed provisions on DDR, transitional and permanent security arrangements, and the process and timelines of transitioning to an agreed long-term security sector architecture. These provisions would guide the design and implementation of DDR programmes that would typically precede SSR processes. However, over the past two decades, as conflict dynamics have changed, the United Nations is often involved in DDR and SSR processes in the absence of comprehensive peace agreements and while conflict is ongoing. The absence of comprehensive peace agreements is, in many cases, manifested by broad SSR and DDR provisions in peace agreements that are limited in scope and that leave out important questions on which parties often continue to disagree. Over the past decade, the United Nations has learned many lessons and developed new tools and approaches, including pre-DDR, to engage with the parties in the absence of political agreement on sensitive SSR/DDR topics and to support progress in dialogue while preparing the ground for future programmes and reforms.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "3fe18f7e-6c5b-462f-b345-7dd89c4e3be5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 15, + "Paragraph": "6.2 Understanding the scope of integration through a political lens The peace agreement and/or subsequent negotiations will determine the quality and quantity of elements to be integrated into the security sector. Typically, these agreements are implemented over a long period of time and may be altered in the process. Hence, practitioners may need to advise relevant national authorities and actors/partners on practical questions of approach, sequencing and priorities, including gender-responsive elements of these, that the peace agreement would not have addressed in detail. The creation of a representative oversight body for integration, including male and female representatives of all former warring parties, should also be considered. It is, however, critical to highlight that the design and support to the integration process, including agreement on ranks and numbers for integration, must be considered in light of the evolving political process (and security landscape) and keeping in mind that ill-designed short-term projects and integration initiatives are likely to fail, undermine trust in the peace process and inflict lingering damage to the prospects for peace and security. Importantly, where national legal and regulatory frameworks pertaining to the security sector may need to be adjusted through further laws or decrees in line with provisions in the peace agreement, it is important to adequately reflect the issue of integration. Where negotiations are ongoing, laws may refer to the primacy of agreements reached by designated bodies and political processes. This should prevent a situation where legislation is used as an \u201cargument\u201d against integration.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "7b2a0b12-3344-4554-949e-823f5dd9083a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.3 Integrating gender in integrated DDR/SSR support Gender-transformative practices should begin as early as possible during the peace process to ensure representation of women and women\u2019s organizations in the national dialogue that feeds into negotiations. All participants in negotiations, as well as those crafting DDR and SSR provisions and frameworks, should be sensitized to the existence of, and prevention of, gender-based and sexual violence. Increasing the number of women in security sector institutions has been shown to increase their ability to effectively respond to sexual and gender-based violence. It is also important that the specific protection concerns for women integrating into the security sector be assessed and inform the training curriculum and rollout, infrastructure for staff facilities, and reporting within the security sector. Including women in peace processes at the decision-making level can broaden national ownership of post-conflict reforms, reinforcing the credibility of the process. This should also set the tone for a post\u2013peace process society that is sensitive to gender issues. Where possible, the peace agreement should outline specific provisions on the integration of both males and females into representative and inclusive security sector institutions. It is important to ensure there is not a tokenistic process for the inclusion of women; rather, these approaches should be implemented in a considered and systematic manner. For example, merely including one or more women on the negotiation team, or having one woman at the negotiating table, is not a substitute for ensuring women\u2019s meaningful engagement in peace and security, nor for conducting and utilizing systematic assessments of the security needs and concerns of women. Women and women\u2019s groups must also play a role in implementing peace agreements and in carrying out DDR and SSR processes, ensuring that women have equal opportunities to benefit from DDR/SSR, as appropriate to the situation and the role that they held during conflict. Gender-responsive budgeting throughout the DDR and SSR process should also be implemented in order to fully integrate women and ensure their needs are addressed in a sustainable manner. The capacities of women\u2019s groups should also be built, where necessary, so that they may be enabled to advertise opportunities to women and girls, address their mental and physical health needs, and provide them with other gender-responsive DDR/SSR opportunities.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "c5adc039-f8d7-4bfc-bfc6-516d7dea64f5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.4 Registration of individuals joining the integration process DDR practitioners conduct the registration of former members of armed groups, including biometric registration, for the purpose of DDR programmes. Where appropriate and possible, DDR practitioners will undertake and/or be involved in the registration of eligible individuals who want to join the security sector through the DDR process. Also, where appropriate, the biometric registration process used during DDR programmes may be expanded to the security sector (see IDDRS 4.20 on Demobilization). During the registration process, DDR practitioners will collect basic information about the individuals, such as name, age, gender, profession, geographic origin, ethnicity, armed group affiliation, wartime activity, etc. The registration process, or the related counselling and referral questionnaires, may provide evidence of the total number of combatants interested in integration. It will also serve as an additional safeguard against including children in the integration process. Furthermore, where statutory security institutions are required by the peace agreement to submit numbers/profiles of security personnel, these numbers are unlikely to be accurate. SSR assessments and reform programmes that produce real numbers of security personnel, as reflected on the payroll, are typically undertaken at later stages of the SSR process, as they require a high level of cooperation and trust among parties and with international partners.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "fc8530fa-e2a3-4a09-a53f-52140d61ada1", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.5 Vetting as a step in the integration process Vetting is the formal process of assessing suitability for public employment with a focus on individuals\u2019 human rights records. Former members of armed forces and groups who enter formal employment in the security sector shall be vetted. The vetting process will vary depending on the context and resources available to conduct it. It can range from a full vetting process \u2013 which reviews legal and financial records and collects statements from witnesses, etc. \u2013 to a lighter process suitable for the specific context, factoring in overall timelines and resources available. The vetting process is often the first step in determining eligibility to join the security sector. In a post-conflict situation, vetting for the purpose of integration will typically focus on the respect of human rights. Consequently, perpetrators of genocide, war crimes, crimes against humanity and/or gross human rights violations shall be excluded from the integration process and referred to the justice system. Similarly, DDR/SSR practitioners should be aware of a Member State\u2019s obligations under applicable sanctions regimes and the international counter-terrorism legal framework, including bringing terrorists to justice (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Former combatants who committed such crimes or violations are not likely to inspire the trust of the population. In particular, victims of abuse are unlikely to trust and rely on a public institution that hires individuals with serious integrity deficits, which would fundamentally impair the social contract. It is important to keep in mind that there is, in principle, no time limit on prosecuting serious crimes under international law and that individuals who may have passed vetting may be prosecuted and removed from the security sector at a later stage if evidence of such crimes comes to light.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "60c08552-9bdd-40ff-987a-72a295c97b8b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.6 Vetting of former combatants against professional eligibility criteria If individuals pass the human rights/criminal-focused vetting process, they will be vetted against professional eligibility criteria for integration into the security sector. Those who are found to be ineligible based on professional criteria may receive DDR support to reintegrate back into civilian life in line with their overall eligibility for DDR. Typically, professional integration criteria will be determined during the peace process and may be part of the peace agreement or technical agreements reached at a later stage. They include criteria such as citizenship, language, minimum/maximum age, level of education, professional skills and experience, physical and mental aptitude, etc. It is important to keep in mind that integration is different from recruitment. Whereas integration is primarily a political process designed to address root causes of conflict and reduce structural risks within the security sector, recruitment is a purely technical human resources process. If discriminatory regulations or practices are used during mediation or during the implementation of the integration process to exclude minorities, including women, then SSR, DDR and political experts should work closely together to align messages and adapt support strategies to ensure more inclusive integration. Even where exclusionary agreements were reached during the mediation process, DDR/SSR practitioners and political/legal experts in the United Nations should carefully devise strategies to address these structural risks through programmes, legislative changes, national policies, etc. For example, if language was included as a criterion for integration but members of armed groups primarily speak a different language than the administrative/majority language, the United Nations may seek to amend this provision or seek an agreement whereby national authorities provide language training to former combatants who are otherwise eligible to be integrated.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "27e5f453-4e80-4e52-80f4-7f9e4daebea8", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 17, + "Paragraph": "6.7 Recognizing risks during the design and execution of integration processes To avoid harm and support sustainable peace, it is essential that integration is put in the wider political and security context and with an understanding of its potential impact in the medium and long term. Integration has to be considered part of a sequenced rightsizing and restructuring process of the security sector. Integration and SSR should not be approached through a project lens, as even a perfectly successful project may ultimately lead to damaging outcomes. DDR and SSR practitioners should avoid contributing to the risks discussed below and actively work with national counterparts and partners to address them.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "4e16a9d9-98be-4583-bfaf-aee2234f64a5", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.7.1 Neglecting the link between military and police integration and reform The military and police are typically the largest security institutions and therefore the main recipients of former combatants. It is important that integration into the security sector is not approached from the perspective of individual security agencies. The historical role and background of various security agencies is different in each context, and so is the role of these institutions in relation to conflict drivers. Moreover, an approach that looks only at security agencies without understanding the governance and economic dynamics in which they are embedded may entrench conflict drivers, exclusion and marginalization and pave the way for relapse into conflict. Therefore, understanding how integration affects the wider security governance architecture and political economy of the security sector is vital to designing conflict-sensitive and sustainable integration options.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "2cf9eb82-d9f9-45a5-b619-7ce0b5e3822a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.7.2 Undermining the development of people-centred policing Where the military has been the main and dominant security force, and has been used to perform internal protection functions, armed groups may favour military integration, as it is linked to a higher social status and access to more resources and political influence. This may mean that only those not deemed \u201cqualified enough\u201d to join the military will be channeled to the police. As the stated objective of many post-conflict SSR processes is to strengthen people-centered policing, it is important that the integration process does not undermine this objective.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "cbaf7ed6-d731-4870-bb93-ad3363e8710a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 18, + "Paragraph": "6.7.3 Contributing to a security vacuum Where traditionally the police service has been understaffed and underresourced, it may be necessary to staff the police with personnel, both men and women, who have the experience and skills to provide security effectively. This is particularly important when integration and reform are taking place in an environment where the security forces and the civilian population continue to face significant security threats, including from non-State armed groups. If former military personnel and/or special forces are integrated into the police service as a deliberate strategy, it is critical to accompany such integration with adequate training and enhanced capacity for civilian and judicial accountability mechanisms. Additionally, as part of the peace process, strategies for internal security services to take over security functions in the areas previously controlled by armed groups should be devised.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "c5eae02c-3e6e-4eee-84f0-314415dbb41a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 18, + "Paragraph": "6.7.4 Increasing protection risks to communities Integration of armed groups into the security sector should also be considered in light of the planned modalities for their organization and deployments that will be determined as part of SSR strategies and plans. From the perspective of peaceful and diverse societies, it is preferable that integrated combatants are mixed up and deployed across the country, regardless of ethnic, religious and other political considerations. While this should be the aspiration for reform and integration, the reality may be that the deployment of certain individuals and groups may result in increased tensions and insecurity for local communities. Therefore, it is important to carefully consider possible unintended effects of integration and advise that the process is designed and executed in stages and adjusted when negative consequence are observed. Making everyone, including donors and partners, aware of these risks and agreeing on joint response and mitigation measures is a crucial step in the design and implementation of integration processes.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "ac513af3-72e3-4776-a578-290dd9931cb0", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "6.7.5 Integration as a political bargaining chip Integration, beyond serving to \u201cunite\u201d former adversaries into a single security apparatus, effectively also serves as a security guarantee and security power-sharing mechanism. The political aspects are particularly prominent in the number and rank of senior military positions assigned to former combatants, and also in the command and oversight functions assigned to politicians affiliated with the different warring camps, including regional and local administrators on whose territory security forces are or may in the future be deployed. A key component of successful integration is the clarity of the political agreement on senior appointments and civilian command and oversight functions. A pattern of defections/renegotiated entries into security forces (a \u201crevolving door\u201d syndrome) is a strong indication that a unified control and command chain is not present. This can present a serious risk to the peace process and a protection risk to civilians.", + "Can": true, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "99bc2bbe-e16e-46be-9f47-f811a68c06b9", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "7. DDR-related tools as an entry point and catalyst for SSR DDR-related tools are immediate and targeted measures that can be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR). Many DDR-related tools, such as community violence reduction (CVR) and transitional weapons and ammunition management (WAM), can contribute to a more people-centred approach to SSR. Although the precise linkages between a DDR programme and SSR will vary in different contexts, DDR practitioners should be aware of the need to plan for the following.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "b4ec75d9-0e27-4295-952c-a2ee7fefbd10", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 19, + "Paragraph": "7.1 Transitional WAM and SSR Transitional WAM measures are implemented as part of a DDR process, either as stand-alone measures or as part of CVR programmes, and can complement top-down SSR programmes (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR-related transitional WAM may be implemented at the same time as the UN is providing support to SSR. The UN may support national authorities in the rightsizing of their armed forces. Such reforms include the need to adapt national arsenals to the size, needs and objectives of the security sector of the country in question. This requires an effective needs assessment, strategic planning, and the technical capacity and support to identify surplus or obsolete materiel and destroy it. When SSR is ongoing, DDR-related transitional WAM may be used as an entry point to align national WAM capacity with international WAM guidance and international and regional legal frameworks. For instance, storage facilities built or refurbished to store DDR materiel could then be used to house stockpiles for security institutions, and as a proof of concept for upgrading of facilities. All WAM activities shall be designed and implemented in line with international technical guidance, including MOSAIC Module 02.20 Small Arms and Light Weapons Control in the Context of Security Sector Reform and the International Ammunition Technical Guidelines.", + "Can": true, + "May": true, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "08988f2d-da26-4e21-b004-d5cdca866545", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 19, + "Paragraph": "7.2 Weapons and ammunition integration While destruction shall be the preferred method of disposal of materiel collected during the disarmament phase of a DDR programme, national authorities may insist that serviceable materiel should be incorporated into national stockpiles. Before transferring arms and ammunition to national authorities, DDR practitioners shall take account all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek legal advice. If the national authority in question is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such materiel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy on UN support to non-UN security forces, materiel and other types of support that fall under the policy shall be transferred only after adequate risk assessments are done and mitigation measures for the identified risks are developed and implemented. Where there are substantial grounds to believe that there is a real risk that the intended recipient is committing grave violations of international humanitarian, human rights or refugee law, such support should not be provided. The potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles should be explained to national authorities. These consequences not only include the symbolic connotations of using conflict weapons, but also the costs and operational challenges that come with the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remarking of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and perceptions of such processes on women, men, boys and girls. In addition, women\u2019s roles in the conflict and within armed forces and groups may have given them specific knowledge of weapons caches and trafficking routes. For further guidance, see IDDRS 4.10 on Disarmament.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "8386573a-4415-4d79-b626-b830342ad4ba", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 20, + "Paragraph": "7.3 Integrated DDR and SSR assessments at the local level Many DDR-related tools, such as CVR and transitional WAM, are implemented at the local level and require local-level gender- and age-sensitive assessments. When CVR programmes and/or transitional WAM are planned alongside SSR, these local-level assessments should be considered alongside broader SSR assessments. For example, bottom-up weapons surveys can contribute to assessments concerning security threats and public perceptions of security. Furthermore, while SSR programmes require a threat assessment that may potentially include a public perception survey to determine the key security concerns of the population, CVR programmes require a comprehensive and gender-responsive baseline assessment of local violence dynamics as well as an assessment of the capacities, interests and strengths of the communities to engage in and support CVR. Furthermore, if different local assessments reveal similar patterns or trends, this may signal a systemic problem requiring effort to be channelled through more municipal or national reforms of the security sector. For further information on the assessments required for CVR and transitional WAM, see IDDRS 2.30 on Community Violence Reduction, IDDRS 5.10 on Women, Gender and DDR, and IDDRS 4.11 on Transitional Weapons and Ammunition Management.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "54a27379-ca13-44d5-95ad-c89b126dba8d", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 20, + "Paragraph": "7.4 Community violence reduction Where conditions for SSR and/or DDR are not present, support to local security arrangements should foster trust building with the statutory security sector and create entry points for SSR in the future. SSR processes can be a platform to recognize local security arrangements consisting of diverse actors as part of legitimate State authority and thus contribute to a more inclusive national security architecture that advances diversity and representation. In all of these cases, it is important to understand the distribution of political power and economic resources and to consider how SSR and DDR support options will impact this distribution. Although SSR is people centred, SSR policies and strategies are typically developed top-down. In contrast, CVR is a practical approach that focuses on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment, including recruitment of children (see IDDRS 2.30 on Community Violence Reduction). By drawing on these different vantage points, SSR and CVR programmes can be linked in mutually reinforcing ways.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "bd8d56e1-81f7-4208-9e93-340ca449e053", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "7.4.1 Concurrent SSR and CVR programming Concurrent programming should be mutually reinforcing. For example, awareness-raising campaigns on domestic violence and sexual and gender-based violence as part of a CVR programme can be combined with SSR programming initiatives such as legal reform relating to SGBV/domestic violence; capacity-building of security institutions in the area of gender and procedures for dealing with victims of SGBV; ensuring fair representation of men and women in security bodies; and leveraging the knowledge and skills of women for broader peace and security, including in supporting community security. To ensure that programmes are mutually sensitive, communication between the different programmes is important.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "b1b4559e-b9f3-41ab-aa6c-6002ed1eda0e", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "7.4.2 Sequential CVR and SSR programmes Where conditions for SSR don\u2019t exist, it may be helpful to start with local-level CVR programmes. Building local-level security initiatives as well as working with local/non-State security and justice actors can provide a basis for discussing reforms of the security institutions and foster the trust required to enhance governance where the State previously had no access.", + "Can": true, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "598c8901-1651-4840-a7dd-e1281351d166", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 21, + "Paragraph": "8. Reintegration of former combatants into civilian life and linkages to SSR Reintegration support, which is designed to help individuals leave armed groups and rejoin civilian life, can be offered at different phases of the conflict but is most prominently linked to the implementation of peace and political agreements. In this context, reintegration support may be provided to members of armed forces and groups who are not eligible or able to join newly formed security institutions.", + "Can": true, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "5b209fbc-3384-487a-8054-8b31b5e6275b", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "8.1 Reintegration assistance for individuals found to be ineligible for integration against professional eligibility criteria In some contexts, the peace agreement in place may state that reintegration support should be provided to those who demobilize and return to civilian life (as part of a DDR programme), but also to those who apply for integration into the security sector but fail to meet the professional eligibility criteria. DDR practitioners should ensure that considerations for those who are ineligible for integration are factored into the assessments conducted as part of the planning for reintegration support (see IDDRS 4.30 on Reintegration, IDDRS 5.10 on Women, Gender and DDR, and IDDRS 5.20 on Children and DDR). In particular, DDR practitioners should ensure that the necessary preparations are in place and that sufficient funding is available to handle this additional caseload. Individuals who are excluded from integration because of serious crimes (see section 6.5) shall be referred to appropriate justice mechanisms and not offered reintegration support.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "fc9be4b5-ed39-41bc-8275-d8a6b97fe30c", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "8.2 Reintegration programmes in support of government-led efforts to decommission security personnel following wartime military mobilization It is important to highlight that support may also be provided to serving security personnel who may be decommissioned from the security sector as part of a rightsizing process. Separation of serving security personnel is typically under the umbrella of the national SSR process and led by national institutions, and may include pensions, separation packages and/or other benefits in the framework of the national budget. However, following wartime military mobilization, States may take a reintegration support approach during and following wartime military mobilization to meet the needs and harness the capacities of the large numbers of men and women mobilized who will need assistance to transition into civilian life. Many will require reintegration assistance while conflict is still ongoing as a result of becoming unfit for service (e.g., because they have acquired a disability or psychosocial or mental health impairment). Decisions on adopting a reintegration support approach are guided by political strategies and informed by domestic fiscal realities. While the security sector in most contexts may be overly large and costly, it is often not possible to reduce its size in the immediate period following conflict. Also, a formal launch of \u201cdownsizing\u201d exercises may create unsustainable political pressures and increase insecurity in a fragile post-conflict environment.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "8ce63905-bc77-4504-b74f-a39a250065b4", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 22, + "Paragraph": "8.3 Reintegration assistance versus separation benefits and pensions Reintegration assistance should not be confused with pension schemes. Pensions are a long-term entitlement provided by the State, whereas reintegration support is provided for a finite, predetermined period of time, such as two to three years, through external financial assistance or the State budgets (see IDDRS 4.30 on Reintegration). SSR and DDR practitioners should pay special attention to the eligibility of women for pensions and/or disability benefits, as frequently they can be purposely or inadvertently left out of such processes because of strict criteria that do not recognize their specific roles in the conflict and their eligibility for such processes where the State has extended this eligibility (see IDDRS 5.80 on Disability-Inclusive DDR). While former members of armed groups are not typically eligible to receive separation benefits like those that may be provided to serving security personnel, a Government may decide to extend eligibility to them and/or to include other benefits as part of the peace agreement. In some cases, former combatants may receive such support from other State programmes as well as through the DDR programme. DDR practitioners should also be aware of relevant reintegration services that are available and be sure to factor them in their planning. They should also take into account how well these services are resourced to avoid tensions among eligible recipients. Where possible, public information campaigns accompanying DDR and SSR should help to make individuals aware of what they are eligible for (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR and IDDRS 5.10 on Women, Gender and DDR).", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "cd99c240-0b79-4575-a8df-bb5e22024a00", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": 22, + "Paragraph": "9. DDR, SSR and cross-cutting issues The topics and questions outlined in this module present issues that cut across DDR and SSR processes and link them in different ways. In addition to the topics outlined, there are considerations that are not specific to either SSR or DDR, but that should be considered in an integrated manner to manage risks and ensure the highest impact of UN and international support to SSR/DDR.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "8493735e-4e4e-4e8f-92a9-38a724e75b69", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "9.1 Adopting a national funding lens for DDR and SSR programmes DDR and SSR are expensive processes drawing on limited domestic and foreign funding. Traditionally, donors have invested solidly in DDR processes, as they were comprehensive and signaled a reliable transition from conflict to peace. As Governments and donors face growing demands for funding of development, humanitarian and security needs, it is crucial that SSR and DDR experts design programmes and strategies that can be sustained on realistic national budgets. Linking support to DDR and SSR to reforms and public finance including security sector planning, budgeting and financing can be a sign of commitment by national authorities to DDR and SSR processes (see also IDDRS 3.41 on DDR Budgeting and Financing). The incorporation of SSR/DDR commitments into national development funding frameworks is critical for ensuring the long-term commitment and progress on gains supported by the United Nations.", + "Can": true, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "f9206c5c-bdd6-4deb-8c71-0719b0cfa38a", + "Color": "#CF7AB2", + "Level": "6", + "LevelName": "", + "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", + "PageNum": null, + "Paragraph": "9.2 Integrated approach to partnerships\t The landscape of international partners and donors for DDR and SSR has changed considerably over the past decade. More actors, often with differing approaches and priorities, may offer more support but may also pull in opposite directions and allow national stakeholders to shop for partners, thus avoiding difficult decisions and seeking support for short-term solutions that may undermine the DDR/SSR process. It is therefore critical that the United Nations takes an integrated approach to partnerships on SSR/DDR \u2013 ensuring joint strategic priorities and coordinated messaging and approaches to funding for DDR/SSR.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + } +] \ No newline at end of file diff --git a/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json b/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json new file mode 100644 index 0000000..1e34f51 --- /dev/null +++ b/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json @@ -0,0 +1,572 @@ +[ + { + "ID": "b2162b57-13b3-47ef-afee-49a874039f33", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction: The rationale and mandate for integrated DDR 4. The UN DDR approach 5. UN DDR in mission and non-mission settings \t5.1 DDR in mission settings \t5.2 DDR in non-mission settings 6. When is DDR appropriate? 6.1 When the preconditions for a DDR programme are not in place 6.2 When the preconditions for a DDR programme are in place 7. Who is DDR for? 8. What principles guide UN DDR? 8.1 Voluntary 8.2 People-centred 8.3 Gender-responsive and inclusive 8.4 Conflict sensitive 8.5 Context specific 8.6 Flexible, sustainable and transparent 8.7 Nationally and locally owned 8.8 Regionally supported 8.9 Integrated 8.10 Well planned Annex A: Abbreviations", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "788880cf-b949-4dd7-8d73-77a89dd92172", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "Summary\t Integrated disarmament, demobilization and reintegration (DDR) is part of the United Nations (UN) system\u2019s multidimensional approach that contributes to the entire peace continuum, from prevention, conflict resolution and peacekeeping, to peacebuilding and development. Integrated DDR processes are made up of various combinations of: DDR programmes; DDR-related tools; Reintegration support, including when complementing DDR-related tools. DDR practitioners select the most appropriate of these measures to be applied on the basis of a thorough analysis of the particular context. Coordination is key to integrated DDR and is predicated on mechanisms that guarantee synergy and common purpose among all UN actors. The Integrated DDR Standards (IDDRS) contained in this document are a compilation of the UN\u2019s knowledge and experience in this field. They show how integrated DDR processes can contribute to preventing conflict escalation, supporting political processes, building security, protecting civilians, promoting gender equality and addressing its root causes, reconstructing the social fabric and developing human capacity. Integrated DDR is at the heart of peacebuilding and aims to contribute to long-term security and stability. Within the UN, integrated DDR takes place in partnership with Member States in both mission and non-mission settings, including in peace operations where they are mandated, and with the cooperation of agencies, funds and programmes. In countries and regions where integrated DDR processes are implemented, there should be a focus on capacity-building at the regional, national and local levels in order to encourage sustainable regional, national and/or local ownership and other peacebuilding measures. Integrated DDR processes should work towards sustaining peace. Whereas peacebuilding activities are typically understood as a response to conflict once it has already broken out, the sustaining peace approach recognizes the need to work along the entire peace continuum and towards the prevention of conflict before it occurs. In this way the UN should support those capacities, institutions and attitudes that help communities to resolve conflicts peacefully. The implications of working along the peace continuum are particularly important for the provision of reintegration support. Now, as part of the sustaining peace approach those individuals leaving armed groups can be supported not only in post-conflict situations, but also during conflict escalation and ongoing conflict. Community-based approaches to reintegration support, in particular, are well positioned to operationalize the sustaining peace approach. They address the needs of former combatants, persons formerly associated with armed forces and groups, and receiving communities, while necessitating the multidimensional/sectoral expertise of several UN and regional actors across the humanitarian-peace-development nexus (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Integrated DDR should also be characterized by flexibility, including in funding structures, to adapt quickly to the dynamic and often volatile conflict and post-conflict environment. DDR programmes, DDR-related tools and reintegration support, in whichever combination they are implemented, shall be synchronized through integrated coordination mechanisms, and carefully monitored and evaluated for effectiveness and with sensitivity to conflict dynamics and potential unintended effects. Five categories of people should be taken into consideration in integrated DDR processes as participants or beneficiaries, depending on the context: 1)\tmembers of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); 2)\tabductees or victims; 3)\tdependents/families; 4)\tcivilian returnees or \u2018self-demobilized\u2019; 5)\tcommunity members. In each of these five categories, consideration should be given to addressing the specific needs and capacities of women, youth, children, persons with disabilities, and persons with chronic illnesses. In particular, the unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. Disarmament and other DDR-related weapons control activities aim to reduce the number of illicit weapons, ammunition and explosives in circulation and are important elements in responding to and addressing the drivers of conflict. Demobilization, including the provision of tailored reinsertion packages, is crucial in discharging combatants and those in support roles from the structures of armed forces and groups. Furthermore, DDR programmes emphasize the developmental impact of sustainable and inclusive reintegration and its positive effect on the consolidation of long-lasting peace and security. Lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. When these preconditions are in place, a DDR programme provides a common results framework for the coordination, management and implementation of DDR by national Governments with support from the UN system and regional and local stakeholders. A DDR programme establishes the outcomes, outputs, activities and inputs required, organizes costing requirements into a budget, and sets the monitoring and evaluation framework, including by identifying indicators, targets and milestones. In addition to DDR programmes, the UN has developed a set of DDR-related tools aiming to provide immediate and targeted responses. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation, and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may also be provided by DDR practitioners in compliance with international standards. The specific aims of DDR-related tools vary according to the context and can contribute to broader political and peacebuilding efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to delimit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN approach to integrated DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In these contexts, reintegration may take place alongside/following DDR-related tools, or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes also aim to contribute to preventing further recruitment and to sustaining peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. In this context, exits from armed groups and the reintegration of adult ex-combatants can and should be supported at all times, even in the absence of a DDR programme. Support to sustainable reintegration that addresses the needs of affected groups and harnesses their capacities, either as part of DDR programmes or not, requires a thorough understanding of the drivers of conflict, the specific needs of men, women, children and youth, their coping mechanisms and the opportunities for peace. Reintegration assistance should ensure the transition from individually focused to community approaches. This is so that resources can be applied to the benefit of the community in a balanced manner minimizing the stigmatization of former armed group members and contributing to reconciliation and reconstruction of the social fabric. In non-mission contexts, where funding mechanisms are not linked to peacekeeping assessed budgets, the use of DDR-related tools should, even in the initial planning phases, be coordinated with community-based reintegration support in order to ensure sustainability. Together, DDR programmes, DDR-related tools, and reintegration support provide a menu of options for DDR practitioners. If the aforementioned preconditions are in place, DDR-related tools may be used before, after or alongside a DDR programme. DDR-related tools and/or reintegration support may also be applied in the absence of preconditions and/or following the determination that a DDR programme is not appropriate for the context. In these cases, DDR-related tools may serve to build trust among the parties and contribute to a secure environment, possibly even paving the way for a DDR programme in the future (if still necessary). Notably, if DDR-related tools are applied with the explicit intent of creating the preconditions for a DDR programme, a combination of top-down and bottom-up measures (e.g., CVR coupled with DDR support to mediation) may be required. When the preconditions for a DDR programme are not in place, all DDR-related tools and support to reintegration efforts shall be implemented in line with the applicable legal framework and the key principles of integrated DDR as defined in these standards.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "8a1c185b-658e-44a4-9874-1b5cbb9bfa54", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "1. Module scope and objectives\t This module outlines the reasons behind integrated DDR, defines the elements that make up DDR programmes as agreed by the UN General Assembly, and establishes how the UN views integrated DDR processes. The module also defines the UN approach to integrated DDR for both mission and non-mission settings, which is: voluntary; people-centred; gender-responsive and inclusive; conflict-sensitive; context-specific; flexible, accountable and transparent; nationally and locally owned; regionally supported; integrated; and well planned.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "9a43673d-49be-4cf8-96b9-68ad73e8059f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 5, + "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. A DDR programme contains the elements set out by the Secretary-General in his May 2005 note to the General Assembly (A/C.5/59/31). (See box below.) These definitions are also used for drawing up budgets where UN Member States have agreed to fund the disarmament and demobilization (including reinsertion) phases of DDR programmes from the peacekeeping assessed budget. These budgetary aspects are also reflected in a General Assembly resolution on cross-cutting issues, including DDR (A/RES/59/296). Further reviews of both the United Nations Peacebuilding Architecture and the Women, Peace and Security Agenda refer to the full, unencumbered participation of women in all phases of DDR programmes, as ex-combatants or persons formerly associated with armed forces and groups. DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes or when the preconditions for DDR-programmes are not in place. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may be provided by DDR practitioners in compliance with international standards. Reintegration support, including when complementing DDR-related tools: The UN should provide support to the reintegration of former members of armed forces and groups not only as part of DDR programmes, but also in the absence of such programmes, during conflict escalation, conflict and post-conflict. In these contexts, reintegration may take place alongside/following DDR-related tools or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent further recruitment and sustain peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. Integrated DDR processes are made up of different combinations of DDR programmes, DDR-related tools and reintegration support, including when complementing DDR-related tools. These different measures should be applied in an integrated manner, with joint mechanisms that guarantee coordination and synergy among all UN actors. The UN shall use the concept and abbreviation \u2018DDR\u2019 as a comprehensive term referring to integrated DDR, and including DDR programmes, DDR-related tools and reintegration support. Importantly, integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "a7385bc0-47ea-4f14-ba0b-728ce960b974", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "3. Introduction: The rationale and mandate for integrated DDR As DDR is implemented in partnership with Member States and draws on the expertise of a wide range of stakeholders, an integrated approach is vital to ensure that all actors are working in harmony towards the same end. Past experiences have highlighted the need for those involved in planning and implementing DDR and monitoring its impacts to work together in a complementary way that avoids unnecessary duplication of effort or competition for funds and other resources (see IDDRS 3.10 on Integrated DDR Planning). The UN\u2019s integrated approach to DDR is guided by several policies and agendas that frame the UN\u2019s work on peace, security and development: Echoing the Brahimi Report (A/55/305; S/2000/809), the High-Level Independent Panel on Peace Operations (HIPPO) in June 2015 recommended a common and realistic understanding of mandates, including required capabilities and standards, to improve the design and delivery of peace operations. Integrated DDR is part of this effort, based on joint analysis, comprehensive approaches, coordinated policies, DDR programmes, DDR-related tools and reintegration support. The Sustaining Peace Approach \u2013 manifested in the General Assembly and Security Council twin resolutions on the Review of the United Nations Peacebuilding Architecture (General Assembly resolution 70/262 and Security Council resolution 2282 [2016]) \u2013 underscores the mutually reinforcing relationship between prevention and sustaining peace, while recognizing that effective peacebuilding must involve the entire UN system. It also emphasizes the importance of joint analysis and effective strategic planning across the UN system in its long-term engagement with conflict-affected countries, and, where appropriate, in cooperation and coordination with regional and sub-regional organizations as well as international financial institutions. Integrated DDR also needs to be understood as a concrete and direct contribution to the implementation of the Sustainable Development Goals (SDGs). The SDGs are underpinned by the principle of leaving no one behind. The 2030 Agenda for Sustainable Development explicitly links development to peace and security, while SDG 16 is focused on the promotion of peaceful, just and inclusive societies. Specifically, integrated DDR contributes to the implementation of: SDG 16.1: Significantly reduce all forms of violence and related death rates everywhere. SDG 16.4: By 2030, significantly reduce illicit financial and arms flows, strengthen the recovery and return of stolen assets and combat all forms of organized crime. SDG 8.7: Take immediate steps to \u2026 secure the prohibition and elimination of child labour, including recruitment and use of child soldiers, and by 2015 end child labour in all its forms. Gender-responsive DDR also contributes to: SDG 5.1: End all forms of discrimination against women. SDG 5.2: Eliminate all forms of violence against all women and girls in public and private spaces, including trafficking, sexual and other types of exploitation. SDG 5.6: Ensure universal access to sexual and reproductive health and reproductive rights. The Quadrennial Comprehensive Policy Review (A/71/243, 21 December 2016, para. 14), states that \u201ca comprehensive whole-of-system response, including greater cooperation and complementarity among development, disaster risk reduction, humanitarian action and sustaining peace, is fundamental to most efficiently and effectively addressing needs and attaining the Sustainable Development Goals.\u201d Moreover, integrated DDR often takes place amid protracted humanitarian contexts which, since the 2016 World Humanitarian Summit Commitment to Action, have been framed through various initiatives that recognize the need to strengthen the humanitarian, development and peace nexus. These initiatives \u2013 such as the Grand Bargain, the New Way of Working (NWoW), and the Global Compact on Refugees \u2013 all call for humanitarian, development and peace stakeholders to identify shared priorities or collective outcomes that can serve as a common framework to guide respective planning processes. In contexts where the UN system implements these approaches, integrated DDR processes can contribute to the achievement of these collective outcomes. In all contexts \u2013 humanitarian, development, and peacebuilding \u2013 upholding human rights, including gender equality, is pivotal to UN-supported integrated DDR. The Universal Declaration of Human Rights (UDHR, UNGA 217, 1948), the International Covenant on Civil and Political Rights, and the International Covenant on Economic, Social and Cultural Rights form the International Bill of Human Rights. These fundamental instruments, combined with various treaties and conventions, including (but not limited to) the Convention on the Elimination of Discrimination Against Women (CEDAW), the\u00a0International Convention on the Elimination of All Forms of Racial Discrimination, the\u00a0United Nations Convention on the Rights of the Child, and the\u00a0United Nations Convention Against Torture, establish the obligations of Governments to promote and protect human rights and the fundamental freedoms of individuals and groups, applicable throughout integrated DDR. The work of the United Nations in all contexts is conducted under the auspices of upholding this body of law, promoting and protecting the rights of DDR participants and the communities into which they integrate, and assisting States in carrying out their responsibilities. \tAt the same time, the Secretary-General\u2019s Action for Peacekeeping (A4P) initiative, launched in March 2018 as the core agenda for peacekeeping reform, seeks to refocus peacekeeping with realistic expectations, make peacekeeping missions stronger and safer, and mobilize greater support for political solutions and for well-structured, well-equipped and well-trained forces. In relation to the need for integrated DDR solutions, the A4P Declaration of Shared Commitment, shared by the Secretary-General on 16 August 2018, calls for the inclusion and engagement of civil society and all segments of the local population in peacekeeping mandate implementation. In addition, it includes commitments related to strengthening national ownership and capacity, ensuring integrated analysis and planning, and seeking greater coherence among UN system actors, including through joint platforms such as the Global Focal Point on Police, Justice and Corrections. Relatedly, the Secretary-General\u2019s Agenda for Disarmament, launched in May 2018, also calls for \u201cdisarmament that saves lives\u201d, including new efforts to rein in the use of explosive weapons in populated areas \u2013 through common standards, the collection of data on collateral harm, and the sharing of policy and practice. The UN General Assembly and the Security Council have called on all parts of the UN system to promote gender equality and the empowerment of women within their mandates, ensuring that commitments made are translated into progress on the ground and gender policies in the IDDRS. More concretely, UNSCR 1325 (2000) encourages all those involved in the planning of disarmament, demobilization and reintegration to consider the distinct needs of female and male ex-combatants and to take into account the needs of their dependents. The Global Study on 1325, reflected in UNSCR 2242 (2015), also recommends that mission planning include gender-responsive DDR programmes. Furthermore, Security Council Resolution 2282 (2016), the Review of the United Nations Peacebuilding Architecture, the Review of Women, Peace and Security, and the High-Level Panel on Peace Operations (HIPPO) note the importance of women\u2019s roles in sustaining peace. UNSCR 2282 highlights the importance of women\u2019s leadership and participation in conflict prevention, resolution and peacebuilding, recognizing the continued need to increase the representation of women at all decision-making levels, including in the negotiation and implementation of DDR programmes. UN General Assembly resolution 70/304 calls for women\u2019s participation as negotiators in peace processes, including those incorporating DDR provisions, while the Secretary-General\u2019s Seven Point Action Plan on Gender-Responsive Peacebuilding calls for 15% of funding in support of post-conflict peacebuilding projects to be earmarked for women\u2019s empowerment and gender-equality programming. Finally, the Secretary-General\u2019s Agenda for Disarmament calls on States to incorporate gender perspectives into the development of national legislation and policies on disarmament and arms control \u2013 in particular, the gendered aspects of ownership, use and misuse of arms; the differentiated impacts of weapons on women and men; and the ways in which gender roles can shape arms control and disarmament policies and practices.", + "Can": true, + "May": true, + "Shall": false, + "Should": false, + "Must": true + }, + { + "ID": "f735bd7e-5639-4cba-9769-11dc5c1bc68e", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "4. The UN DDR approach\t The UN\u2019s integrated approach to DDR is applicable to mission and non-mission contexts, and emphasizes the role of DDR programmes, DDR-related tools, and reintegration support, including when complementing DDR-related tools. The unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a range of activities falling under the operational categories of disarmament, demobilization and reintegration. (See definitions above.) These programmes are typically top-down and are designed to implement the terms of a peace agreement between armed groups and the Government. The UN views DDR programmes as an integral part of peacebuilding efforts. DDR programmes focus on the post-conflict security problem that arises when combatants are left without livelihoods and support networks during the vital period stretching from conflict to peace, recovery and development. DDR programmes also help to build national capacity for long-term reintegration and human security, and they recognize the need to contribute to the right to reparation and to guarantees of non-repetition (see IDDRS 6.20 on DDR and Transitional Justice). DDR programmes are complex endeavours, with political, military, security, humanitarian and socio-economic dimensions. The establishment of a DDR programme is usually agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. This provides the political, policy and operational framework for the DDR programme. More generally, lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. DDR programmes provide a framework for their coordination, management and implementation by national Governments with support from the UN system, international financial institutions, and regional stakeholders. They establish the expected outcomes, outputs and activities required, organize costing requirements into a budget, and set the monitoring and evaluation framework by identifying indicators, targets and milestones. The UN\u2019s integrated approach to DDR acknowledges that planning for DDR programmes shall be initiated as early as possible, even before a ceasefire and/or peace agreement is signed, before sufficient trust is built in the peace process, and before minimum conditions of security are reached that enable the parties to the conflict to engage willingly in DDR (see IDDRS 3.10 on Integrated DDR Planning). DDR programmes alone cannot resolve conflict or prevent violence, and such programmes need to be firmly anchored in an overall political and peacebuilding strategy. However, DDR programmes can contribute to security and stability so that other elements of a political and peacebuilding strategy, such as elections and power sharing, weapons and ammunition management, security sector reform (SSR) and rule of law reform, can proceed (see IDDRS 6.10 on DDR and SSR). In recent years, DDR practitioners have increasingly been deployed in settings where the preconditions for DDR programmes are not in place. In some contexts, a peace agreement may have been signed but the armed groups have lost trust in the peace process or reneged on the terms of the deal. In other settings, where there are multiple armed groups, some may sign on to a peace agreement while others do not. In contexts of violent extremism conducive to terrorism, peace agreements are only a remote possibility. It is not solely the lack of ceasefire agreements or peace processes that makes integrated DDR more challenging, but also the proliferation and diversification of armed groups, including some with links to transnational networks and organized crime. The phenomenon of violent extremism, as and when conducive to terrorism, creates legal and operational challenges for integrated DDR and, as a result, requires specific guidance. (For legal guidance pertinent to the UN approach to DDR, see IDDRS 2.11 on The Legal Framework for UN DDR.) Support to programmes for individuals leaving armed groups labelled and/or designated as terrorist organizations, among other things, should be predicated on a comprehensive screening process based on international standards, including international human rights obligations and national justice frameworks. There is no universally agreed upon definition of \u2018terrorism\u2019, nor associated terms such as \u2018violent extremism\u2019. Nevertheless, the 19 international instruments on terrorism agree on definitions of terrorist acts/offenses, which are binding on Member States that are party to these conventions, as well as Security Council resolutions that describe terrorist acts. Practitioners should have a solid grounding in the evolving international counter-terrorism framework as established by the United Nations Global Counter-Terrorism Strategy, relevant General Assembly and Security Council resolutions and mandates, and the Secretary-General\u2019s Plan of Action to Prevent Violent Extremism. In response to these challenges, DDR practitioners may contribute to stabilization initiatives through the use of DDR-related tools. The specific aims of DDR-related tools will vary according to the context and can contribute to broader political and peacebuilding efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP), and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to delimit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN\u2019s integrated approach to DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In line with the sustaining peace approach, this means that the UN should provide long-term support to reintegration that takes place in the absence of DDR programmes during conflict escalation, ongoing conflict and post-conflict reconstruction (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). The first goal of this support should be to facilitate the sustainable reintegration of those leaving armed forces and groups. However, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent future recruitment and sustain peace. In this regard, opportunities should be seized to prevent relapse into conflict (or any form of violence), including by tackling root causes and understanding peace dynamics. Appropriate linkages should also be established with local and national stabilization, recovery and development plans. Reintegration support as part of sustaining peace is not only an integral part of DDR programmes, it also follows SSR where armed forces or the police are rightsized; complements DDR-related tools, such as CVR, through sustainable measures; or is provided to persons formerly associated with armed groups labelled and/or designated as terrorist organizations. In sum, in countries in active armed conflict or emerging from armed conflict, DDR programmes, related tools and reintegration support contribute to stabilization efforts, to addressing gender inequalities exacerbated by conflict, and to creating an environment in which a peace process, political and social reconciliation, access to livelihoods and sustainable decent work, and long-term development can take root. When the preconditions for a DDR programme are in place, the DDR of combatants from both armed forces and groups can help to establish a climate of confidence and security, a necessity for recovery activities to begin, which can directly yield tangible benefits for the population. When the preconditions for a DDR programme are not in place, practitioners may choose from a set of DDR-related tools and measures in support of reintegration that can contribute to stabilization, help to make the returns of stability more tangible, and create more conducive environments for national and local peace processes. As such, integrated DDR processes should be seen as integral parts of efforts to consolidate peace and promote stability, and not merely as a set of sequenced technical programmes and activities. Overall, integrated DDR has evolved beyond support to national, linear and sequenced DDR programmes, to become a process addressing the entire peace continuum in both mission and non-mission contexts, at regional, national and local levels.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "daa371cd-90be-4ba4-a893-16770d411e13", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 12, + "Paragraph": "5. UN DDR in mission and non-mission settings The UN has been involved in integrated DDR across the peace continuum since the late 1980s. During the past 25 years, the UN has amassed considerable experience and knowledge of the coordination, design, implementation, financing, and monitoring and evaluation of DDR programmes. Over the past 10 years the UN has also gained similar experience in the use of DDR-related tools and reintegration support when the preconditions for DDR programmes are not present. Integrated DDR originates from various parts of the UN\u2019s core mandate, as set out in the Charter of the UN, particularly the areas of peace and security, economic and social development, human rights and humanitarian assistance. UN departments, agencies, programmes and funds are uniquely able to support integrated DDR processes both in mission settings, where peace operations are in place, and in non-mission settings, where there is no peace operation present, providing breadth of scope, neutrality, impartiality and capacity-building through the sharing of technical DDR skills.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "e8479ae3-9b2f-44c5-9b3c-14511c35d5db", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 12, + "Paragraph": "5.1 DDR in mission settings Mission settings are those situations in which peace operations are deployed through peacekeeping operations, political missions and good offices engagements, by the UN or a regional organization. Where peace operations are mandated to manage and resolve an actual or potential conflict within States, DDR is generally mandated through a UN Security Council resolution, ideally within the framework of a ceasefire and/or a comprehensive peace agreement with specific provisions on DDR. Decision-making and accountability rest with the Special Representative or Special Envoy of the Secretary-General. Missions with a DDR mandate usually include a dedicated DDR component to support the design and implementation of a nationally led DDR programme. When the preconditions for a DDR programme are not in place, the Security Council may also mandate UN peace operations to implement specific DDR-related tools, such as CVR, to support the creation of a conducive environment for a DDR programme. These types of DDR-related tools can also be designed and implemented to contribute to other mandated priorities such as the protection of civilians, stabilization and support to the overall peace process. Integrated disarmament, demobilization (including reinsertion) and other DDR-related tools (except those covering reintegration support) fall under the responsibility of the UN peace operation\u2019s DDR component. The reintegration component will be supported and/or undertaken in an integrated manner very often by relevant agencies, funds and programmes within the United Nations Country Team (UNCT), as well as international financial institutions, under the leadership of the Deputy Special Representative of the Secretary-General (DSRSG)/Humanitarian Coordinator (HC)/Resident Coordinator (RC), who will designate lead agency(ies). The DDR mission component shall therefore work in close coordination with the UNCT. The UN DSRSG/HC/RC should establish a UN DDR Working Group at the country level with co-chairs to be defined, as appropriate, to coordinate the contributions of the UNCT and international financial institutions to integrated DDR. While UN military and police contingents provide a minimum level of security, support from other mission components may include communications, gender equality, women\u2019s empowerment, and youth and child protection. With regard to special political missions and good offices engagements, DDR implementation structures and partnerships may need to be adjusted to the mission\u2019s composition as the mandate evolves. This adjustment can take account of needs at the country level, most notably with regard to the size and capacities of the DDR component, uniformed personnel and other relevant technical expertise. In the case of peace operations, the Security Council mandate also forms the basis for assessed funding for all activities related to disarmament, demobilization (including reinsertion) and DDR-related tools (except those covering reintegration support). Fundraising for reintegration assistance and other activities needs to be conducted by Governments and/or regional organizations with support from United Nations peace operations, agencies, funds and programmes, bilateral donors and relevant international financial institutions. Regarding special political missions and good offices engagements, support to integrated DDR planning and implementation may require extra-budgetary funding in the form of voluntary contributions and the establishment of alternative financial management structures, such as a dedicated multi-donor trust fund.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "6317b2fc-5893-4507-9622-2b2a40de0eeb", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "5.2 DDR in non-mission settings Non-mission settings are those situations in which there is no peace operation deployed to a country, either through peacekeeping, political missions or good offices engagements, by either the UN or regional organizations. In countries where there is no United Nations peace operation mandated by the Security Council, UN DDR support will be provided when either a national Government and/or UN RC requests assistance. The disarmament and demobilization components of a DDR programme will be undertaken by national institutions with advice and technical support from relevant UN departments, agencies, programmes and funds, the UNCT, regional organizations and bilateral actors. The reintegration component will be supported and/or implemented by the UNCT and relevant international financial institutions in an integrated manner. When the preconditions for a DDR programme are not in place, the implementation of specific DDR-related tools, such as CVR, and/or reintegration support, may be considered. The alignment of CVR initiatives in non-mission contexts with reintegration assistance is essential. Decision-making and accountability for UN-supported DDR rest, in this context, with the UN RC, who will identify one or more UN lead agency(ies) in the UNCT based on in-country capacity and expertise. The UN RC should establish a UN DDR Working Group co-chaired by the lead agency(ies) at the country level to coordinate the contribution of the UNCT to integrated DDR, including on issues related to gender equality, women\u2019s empowerment, youth and child protection, and support to persons with disabilities. DDR programmes, DDR-related tools and reintegration support, where applicable, will require the allocation of national budgets and/or the mobilization of voluntary contributions, including through the establishment of financial management structures, such as a dedicated multi-donor trust fund or catalytic funding provided by the Peacebuilding Fund (PBF).", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "363fedeb-9c8f-4b2a-8c2d-b5a7e63a18ec", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "6. When is DDR appropriate? Violent conflicts do not always completely cease when a political settlement is reached or a peace agreement is signed. There remains a real danger that violence will flare up again during the immediate post-conflict period, because putting right the political, security, social and economic problems and other root causes of war is a long-term project. Furthermore, peace operations are often mandated in contexts where an agreement is yet to be reached or where a peace process is yet to be initiated or is only partially initiated. In non-mission contexts, requests from the Government for the UN to support DDR are made either when ceasefires are reached or when a peace agreement or a comprehensive peace agreement is signed. This is why practitioners should decide whether DDR programmes, DDR-related tools and/or reintegration support constitute the most appropriate response to a particular situation. A DDR programme will only be appropriate when the preconditions referred to above are in place.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "784fe92e-8828-4dc0-83e3-4a04ed16f1a0", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 18, + "Paragraph": "6.1 When the preconditions for a DDR programme are not in place When the preconditions for a DDR programme are not in place, the reintegration of former combatants and persons formerly associated with armed forces and groups may be supported in line with the sustaining peace approach, i.e., during conflict escalation, conflict and post-conflict. Furthermore, practitioners may choose from a menu of DDR-related tools. (See table above.) Unlike DDR programmes, DDR-related tools are not designed to implement the terms of a peace agreement. Instead, when the preconditions for a DDR-programme are not in place, DDR-related tools may be used in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "63927c23-6577-42bd-b4fb-2cdd0e2d694f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 18, + "Paragraph": "6.2 When the preconditions for a DDR programme are in place When the preconditions are in place, the UN may support the establishment of DDR programmes. Other DDR-related tools can also be implemented before, after or alongside DDR programmes, as complementary measures (see table above). The UN may employ or support a variety of DDR programming elements adapted to suit each context. These may include: The disbanding of armed groups: Governments may request assistance to disband armed groups. The establishment of a DDR programme is agreed to and defined within a ceasefire, the ending of hostilities or a comprehensive peace agreement. Trust and commitment by the parties to the implementation of an agreement and minimum conditions of security are essential for the success of a DDR programme. Administratively, there is little difference between DDR programmes for armed forces and armed groups. Both may require the full registration of weapons and personnel, followed by the collection of information, referral and counselling that are needed before effective reintegration programmes can be put in place. The rightsizing of armed forces or police: Governments may request assistance to downsize or restructure their armies or police and supporting institutional infrastructure (salaries, benefits, basic services, etc.). Such processes contribute to security sector reform (SSR) (see IDDRS 6.10 on DDR and Security Sector Reform). DDR practitioners should work in close collaboration with SSR experts while planning reintegration support to former members of armed forces. The repatriation of foreign combatants and associated groups: Considering the regional dimensions of conflict, Governments may agree to assistance to repatriation. DDR programmes may need to become involved in repatriating national combatants and their civilian family members, as well as children associated with armed forces and groups who may have crossed an international border. Such repatriation needs to be in accordance with the principle of non-refoulement, as set out in international humanitarian, human rights and refugee law (see IDDRS 2.11 on The Legal Framework for UN DDR). While DDR programmes are primarily used to address the security challenges posed by members of armed forces and groups, provisions should be made for the inclusion of other groups (including civilians and youth at risk), depending on resources and local circumstances. National institutions should be supported to determine the policy on direct benefits and reintegration assistance during a DDR programme. Civilians and civil society groups in communities to which members of the abovementioned groups will return should be consulted during the planning and design phase of DDR programmes, as well as informed and supported in order to assist them to receive ex-combatants and their dependents/families during the reintegration phase.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "78f78e25-5d55-436a-9780-f5deeda93f38", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "7. Who is DDR for? Five categories of people should be taken into consideration, as participants and beneficiaries, in integrated DDR processes. This will depend on the context, and the particular combination of DDR programmes, DDR-related tools, and reintegration support in use: 1)\tmembers of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); 2)\tabductees/victims; 3)\tdependents/families; 4)\tcivilian returnees/\u2019self-demobilized\u2019; 5)\tcommunity members. Consideration should be given to addressing the specific needs of women, youth, children, persons with disabilities, and persons with chronic illnesses in each of these five categories. National actors, such as Governments, political parties, the military, signatory and non-signatory armed groups, non-governmental organizations, civil society organizations and the media are all stakeholders in integrated DDR processes along with international actors.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "51e140b1-0b6e-4905-8e96-68c4a7d242db", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8. What principles guide UN DDR? All UN DDR programmes, DDR-related tools, and reintegration support shall be voluntary, people-centred, gender-responsive and inclusive, conflict sensitive, context specific, flexible, accountable and transparent, nationally and locally owned, regionally supported, integrated and well planned.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "0a7c0fa5-6b45-46a4-b517-64acafa78aac", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 19, + "Paragraph": "8.1 Voluntary Integrated DDR shall be a voluntary process for both armed forces and groups, both as organizations and individual (ex)combatants. Groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants in nationally, locally, or privately supported efforts is arguably involuntary, for example as a result of their capture on the battlefield or their being forced into a DDR programme under duress. Integrated DDR should not be conflated with military operations or counter-insurgency strategies. Although the UN does not generally engage in detention operations and DDR has traditionally been a voluntary process, the nature of conflict environments and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism has increased the likelihood that the UN and other actors engaging in DDR may be faced with detention-related dilemmas. DDR practitioners should therefore pay particular attention to such questions when operating in complex conflict environments and seek legal advice if confronted with surrendered or captured combatants in overt military operations, or if there are any concerns regarding the voluntariness of persons participating in DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, call for Member States to bring terrorists to justice and oblige national authorities to ensure the prosecution of suspected terrorists as appropriate (see IDDRS 2.11 on The Legal Framework for UN DDR).", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "e566fc1d-efc4-4980-992b-c78df93ca325", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 20, + "Paragraph": "8.2.1. Criteria for participation/eligibility Determining the criteria that define which people are eligible to participate in integrated DDR, particularly in situations where mainly armed groups are involved, is vital if aims are to be achieved. In DDR programmes, eligibility criteria must be carefully designed and ready for use in the disarmament and demobilization stages. DDR programmes are aimed at combatants and persons associated with armed forces and groups. These groups may be composed of different categories of people who have participated in the conflict within armed forces and groups such as abductees/victims or dependents/families. In instances where the preconditions for a DDR programme are not in place, or where combatants are ineligible for DDR programmes, DDR-related tools, such as CVR, or support to reintegration may be provided. Determination of eligibility for these activities should be undertaken by relevant national and local authorities with support from UN missions, agencies, programmes and funds as appropriate. Armed groups in particular have a variety of structures \u2014 rebel groups, armed gangs, etc. In order to provide the best assistance, operational and implementation strategies that deal with their specific needs should be adopted.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "47c7000c-0e7c-4373-9ac4-b4c9ad1acd6f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 20, + "Paragraph": "8.2.2. Unconditional release and protection of children The unconditional and immediate release of children associated with armed forces and groups must be a priority, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. UN-supported DDR interventions shall not be allowed to encourage the recruitment of children into armed forces and groups in any way, especially by commanders trying to increase the number of combatants entering DDR programmes in order to profit from assistance provided to combatants. When DDR programmes, DDR-related tools and reintegration support are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. Children will then be supported to demobilize and reintegrate into families and communities (see IDDRS 5.30 on Children and DDR). Only child protection practitioners should interview children associated with armed forces and groups.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "75c0ff09-a7b7-424e-9ad9-195638f5d838", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "UN-supported integrated DDR processes promote the human rights of participants and the communities into which they integrate, and are conducted in line with international humanitarian, human rights and refugee law. The UN and its partners should be neutral, transparent and impartial, and should not take sides in any conflict or in political, racial, religious or ideological controversies, or give preferential treatment to different parties taking part in DDR. Neutrality within a rights-based approach should not, however, prevent UN personnel from protesting against or documenting human rights violations or taking some other action (e.g., advocacy, simple presence, political steps, local negotiations, etc.) to prevent them. Under the UN's Human Rights Due Diligence Policy (HRDDP), providers of support have a responsibility to monitor the related human rights context, to suspend support under certain circumstances and to engage with national authorities towards addressing violations. Where one or more parties or individuals violate agreements and undertakings, the UN can take appropriate remedial action and/or exclude individuals from DDR. Humanitarian aid must be delivered to all those who are suffering, according to their need, and human rights provide the framework on which an assessment of needs is based. However, mechanisms must also be designed to prevent those who have committed violations of human rights from going unpunished by ensuring that DDR programmes, related tools and reintegration support do not operate as a reward system for the worst violators. In many post-conflict situations, there is often a tension between reconciliation and justice, but efforts must be made to ensure that serious violations of human rights and humanitarian law by ex-combatants and their supporters are dealt with through appropriate national and international legal and/or transitional justice mechanisms. Children released from their association with armed forces and groups who have committed war crimes and mass violations of human rights may also be criminally responsible under national law, though any criminal responsibility must be in accordance with international juvenile justice standards and the International Criminal Court Policy on Children (see IDDRS 5.20 on Youth and DDR, and IDDRS 5.30 on Children and DDR). UN-supported DDR interventions should take into consideration local and international mechanisms for achieving justice and accountability, as well as respect for the rule of law, including any accountability, justice and reconciliation mechanisms that may be established with respect to crimes committed in a particular Member State. These can take various forms, depending on the specificities of the local context.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "23a5a913-56b7-459c-8f5f-24b2e3e82f80", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.3 Gender responsive and inclusive Like men and boys, women and girls are likely to have played many different roles in armed forces and groups, as fighters, supporters, wives or sex slaves, messengers and cooks. The design and implementation of integrated DDR processes should aim to address the specific needs of women and girls, as well as men and boys, taking into account these different experiences, roles, capacities and responsibilities acquired during and after conflicts. Specific measures should be put in place to ensure the equal and meaningful participation of women in all stages of integrated DDR \u2014 from the negotiation of DDR provisions in peace agreements and the establishment of national institutions, to CVR and community-based reintegration support (see IDDRS 5.10 on Gender and DDR). Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of integrated DDR processes. The eligibility criteria for DDR shall not discriminate against individuals on the basis of sex, age, gender identity, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. Furthermore, the opportunities/benefits that eligible ex-combatants have access to when participating in a particular DDR process shall not discriminate against individuals on the basis of their former affiliation with a particular armed force or group. It is likely there will be a need to address potential \u2018spoilers\u2019, e.g., by negotiating \u2018special packages\u2019 for commanders in order to secure their buy-in and to ensure that they allow combatants to participate. This political compromise must be carefully negotiated on a case-by-case basis. Furthermore, the inclusion of youth at risk and other non-combatants should also be seen as a measure helping to prevent future recruitment.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "62b14da7-19a7-4194-9ef8-ddeadc4cba46", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.4 Conflict sensitive \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made; and, ultimately, no individual or community should be made less secure by the return of ex-combatants or the presence of UN peacekeeping, police or civilian personnel. The establishment of UN-supported prevention, protection and monitoring mechanisms (including systems for ensuring access to justice and police protection, etc.) is essential to prevent and punish sexual and gender-based violence, harassment and intimidation, or any other violation of human rights. It is particularly important to consider \u2018do no harm\u2019 when assessing the reinsertion and reintegration options for female fighters or women and girls associated with armed forces and groups.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "7de33c74-ce19-4a89-984d-6b2dfaa4b2d6", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.5 Context specific Integrated DDR needs to be flexible and context-specific in order to address national, regional, and global realities. DDR should consider the nature of armed groups, conflict drivers, peace opportunities, gender dynamics, and community dynamics. All UN or UN-supported DDR interventions shall be designed to take local conditions and needs into account. The IDDRS provide DDR practitioners with comprehensive guidance and analytical tools for the planning and design of DDR rather than a standard formula that is applicable to every situation.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "fde766d4-84e9-4200-b8bd-7e624cf7c63f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 22, + "Paragraph": "8.6.1 Flexible, sustainable and transparent funding arrangements Due to the complex and dynamic nature of integrated DDR processes, flexible and long-term funding arrangements are essential. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding, etc., and the criteria established for the use of funds shall be flexible. Past experience has shown that assigning funds exclusively for specific DDR components (e.g., disarmament and demobilization) or expenditures (e.g., logistics and equipment) sets up an artificial distinction between the different elements of a DDR programme and makes it difficult to implement the programme in an integrated, flexible and dynamic way. The importance of planning and initiating reinsertion and reintegration support activities at the start of a DDR programme has become increasingly evident, so adequate financing for reintegration needs to be secured in advance. This should help to prevent delays or gaps in implementation that could threaten or undermine the programme\u2019s credibility and viability (see IDDRS 3.41 on Finance and Budgeting).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "bf424153-ef19-4c64-b3dd-83bbb0c6bf96", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.6.2 Accountability and transparency In order to build confidence and ensure legitimacy, and to justify financial and technical support by international actors, DDR programmes, DDR-related tools and reintegration support are, from the very beginning, predicated on the principles of accountability and transparency. Post-conflict stabilization and the establishment of immediate security are the overall goals of DDR, but integrated DDR also takes place in a wider recovery and reconstruction framework. While both short-term and long-term strategies should be developed in the planning phase, due to the dynamic and volatile conflict and post-conflict context, interventions must be flexible and adaptable. The UN aims to establish transparent mechanisms for the independent monitoring, oversight and evaluation of integrated DDR and its financing mechanisms. It also attempts to create an environment in which all stakeholders understand and are accountable for achieving broad objectives and implementing the details of integrated DDR processes, even if circumstances change. Many types of accountability are needed to ensure transparency, including: the commitment of the national authorities and the parties to a peace agreement or political framework to honour the agreements they have signed and implement DDR programmes in good faith; the accountability and transparency of all relevant actors in contexts where the preconditions for DDR are not in place and alternative DDR-related tools and reintegration support measures are implemented; the accountability of national and international implementing agencies to the five categories of persons who can become participants in DDR for the professional and timely carrying out of activities and delivery of services; the adherence of all parts of the UN system (missions, departments, agencies, programmes and funds) to IDDRS principles and guidance for designing and implementing DDR; the commitment of Member States and bilateral partners to provide timely political and financial support to integrated DDR processes. Although DDR practitioners should always aim to meet core commitments, setbacks and unforeseen events should be expected. Flexibility and contingency planning are therefore needed. It is essential to establish realistic goals and make reasonable promises to those involved, and to explain setbacks to stakeholders and participants in order to maintain their confidence and cooperation.", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "0b1a17c8-c966-459b-b845-16517531e9f7", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 24, + "Paragraph": "8.7. Nationally and locally owned Ensuring national and local ownership is crucial to the success of integrated DDR. National ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between ex-combatants and community members. Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between government ministries and local government, between Government and national civil society, and between Government and external partners. In contexts where national capacity is weak, a Government exerts national ownership by building the capacity of its national institutions, by contributing to the integrated DDR process and by creating links to other peacebuilding and development initiatives. This is particularly important in the case of reintegration support, as measures should be designed as part of national development and recovery efforts. National and local capacity must be systematically developed, as follows: Creating national and local institutional capacity: A primary role of the UN is to supply technical assistance, training and financial support to national authorities to establish credible, capable, representative and sustainable national institutions and programmes. Such assistance should be based on an assessment and understanding of the particular context and the type of DDR activities to be implemented, including commitments to gender equality. Finding implementing partners: Besides national institutions, civil society is a key partner in DDR. The technical capacity and expertise of civil society groups will often need to be strengthened, particularly when conflict has diminished human and financial resources. Particular attention should be paid to supporting the capacity development of women\u2019s civil society groups to ensure equal participation as partners in DDR. Doing so will help to create a sustainable environment for DDR and to ensure its long-term success. Employing local communities and authorities: Local communities and authorities play an important role in ensuring the sustainability of DDR, particularly in support of reintegration and the implementation of DDR-related tools. Therefore, their capacities for strategic planning and programme and/or financial management must be strengthened. Local authorities and populations, ex-combatants and their dependents/families, and women and girls formerly associated with armed forces and groups shall all be involved in the planning, implementation and monitoring of integrated DDR processes. This is to ensure that the needs of both individuals and the community are addressed. Increased local ownership builds support for reintegration and reconciliation efforts and supports other local peacebuilding and recovery processes. As the above list shows, national ownership involves more than just central government leadership: it includes the participation of a broad range of State and non-State actors at national, provincial and local levels. Within the IDDRS framework, the UN supports the development of a national DDR strategy, not only by representatives of the various parties to the conflict, but also by civil society; and it encourages the active participation of affected communities and groups, particularly those formerly marginalized in DDR and post-conflict reconstruction processes, such as representatives of women\u2019s groups, children\u2019s advocates, people from minority communities, and persons with disabilities and chronic illness. In supporting national institutions, the UN, along with key international and regional actors, can help to ensure broad national ownership, adherence to international principles, credibility, transparency and accountability (see IDDRS 3.30 on National Institutions for DDR).", + "Can": true, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "09994a74-3557-4aee-b678-f4202759be53", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 24, + "Paragraph": "8.8 Regionally supported The regional causes of conflict and the political, social and economic interrelationships among neighbouring States sharing insecure borders will present challenges in the implementation of DDR. Managing repatriation and the cross-border movement of weapons and armed groups requires careful coordination among UN agencies and regional organizations supporting DDR, both in the countries concerned and in neighbouring countries where there may be spill-over effects. The return of foreign former combatants and mercenaries may be a particular problem and will require a separate strategy (see IDDRS 5.40 on Cross-Border Population Movements). Most notably, UN actors need to engage regional stakeholders in order to foster a conducive regional environment, including support from neighbouring countries, for DDR interventions addressing armed groups operating on foreign national territory and with regional structures.", + "Can": false, + "May": true, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "0b60e4ec-e093-476e-bc5c-b39e431c915f", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.9. Integrated From the earliest assessment phase and throughout all stages of strategy development, planning and implementation, it is essential to encourage integration and unity of effort within the UN system and with national players. It is also important to coordinate the participation of international partners so as to achieve common objectives. Joint assessments and programming are key to ensuring that DDR programmes in both mission and non-mission contexts are implemented in an integrated manner. DDR practitioners should also strive for an integrated approach in contexts where DDR programmes are used in combination with DDR-related tools, and in settings where the preconditions for DDR programmes are absent (see IDDRS 3.10 on Integrated Planning).", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "1f2a14ec-46b5-4656-8ec8-a96b3eca0df4", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.10.1. Safety and security Given that DDR is aimed at groups who are a security risk and is implemented in fragile security environments, both risks and operational security and safety protocols should be decided on before the planning and implementation of activities. These should include the security and safety needs of UN and partner agency personnel involved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Security and other services must be provided either by UN military and/or a UN police component or national police and security forces. Security concerns should be included in operational plans, and clear criteria, in line with the UN Programme Criticality Framework, should be established for starting, delaying, suspending or cancelling activities and/or operations, should security risks be too high.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "a12e448b-5e74-4ee1-858f-b6d2a6c22689", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 25, + "Paragraph": "8.10.2. Planning: assessment, design, monitoring and evaluation Integrated DDR processes shall be designed on the basis of detailed quantitative and qualitative data. Supporting information management systems should ensure that this data remains up to date, accurate and accessible. In the planning stages, information is gathered on the location of armed forces and groups, the demographics of their members (grouped according to sex and age), their weapons stocks, and the political and conflict dynamics at national and local levels. Surveys of national and local labour market conditions and reintegration opportunities should be undertaken. Regularly updating this information, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR to adapt to changing circumstances (also see IDDRS 3.10 on Integrated Planning, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Institutions for DDR). Internal and external monitoring and evaluation mechanisms must be established from the start to strengthen accountability within integrated DDR, ensure quality in the implementation and delivery of DDR activities and services, and allow for flexibility and adaptation of strategies and activities when required. Monitoring and evaluation should be based on an integrated approach to metrics, and produce lessons learned and best practices that will influence the further development of IDDRS policy and practice (see IDDRS 3.50 on Monitoring and Evaluation of DDR Programmes).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "22bdc0ac-2360-476d-91c9-3058bdea7cea", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": null, + "Paragraph": "8.10.3. Public information and community sensitization Public information, awareness-raising and community sensitization ensure that affected communities and participants receive accurate information on DDR procedures and benefits. The sharing of information helps generate broad public support and national ownership, and at the same time manages expectations and encourages behavioural change, the demilitarization of hearts and minds, and reconciliation between ex-combatants and war-affected communities. Public information strategies should be drawn up and implemented as early as possible. Messages should be appropriately tailored for different audiences, considering gender and cultural dimensions in design and delivery, and should employ many different and locally appropriate means of communication (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "04af4363-d60b-4155-9dbb-7d0b4fb5a1af", + "Color": "#008DCA", + "Level": "2", + "LevelName": "", + "Title": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019", + "PageNum": 26, + "Paragraph": "8.10.4. Transition and exit strategies While DDR programmes last for a specific period of time that includes the immediate post-conflict situation and the transition and early recovery periods, other aspects of DDR may need to be continued, albeit in a different form. DDR-related tools can be initiated after DDR programmes, such as when the disarmament of armed groups is followed by community-based weapons and ammunition management. Reintegration assistance also becomes an integral part of recovery and development. To ensure a smooth transition from one stage to another, an exit strategy should be defined as soon as possible, and should focus on how integrated DDR will seamlessly transform into broader and/or longer-term development strategies, such as security sector reform, violence prevention, socio-economic recovery, national reconciliation, peacebuilding, gender equality and poverty reduction. Annex A: Abbreviations A4P\t\tAction for Peacekeeping CEDAW\tConvention on the Elimination of Discrimination Against Women CVR\t\tcommunity violence reduction HIPPO\t\tHigh-Level Independent Panel of Peace Operations HRDDP\tHuman Rights Due Diligence Policy HRP\t\tHumanitarian Response Plan NWoW\t\tNew Way of Working PBF\t\tPeacebuilding Fund SDGs\t\tSustainable Development Goals SSR\t\tsecurity sector reform UDHR\t\tUniversal Declaration of Human Rights UNCT\t\tUN Country Team UN DSRSG\tUN Deputy Special Representative of the Secretary-General UN HC\t\tUN Humanitarian Coordinator UN RC\t\tUN Resident Coordinator UNSDCF\tUN Sustainable Development Cooperation Framework WAM\t\tweapons and ammunition management", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + } +] \ No newline at end of file diff --git a/media/data/json/IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022.json b/media/data/json/IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022.json new file mode 100644 index 0000000..2c421a0 --- /dev/null +++ b/media/data/json/IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022.json @@ -0,0 +1,610 @@ +[ + { + "ID": "69b3f37d-7bb9-4683-a65c-f86aaf259311", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 4. Guiding principles 4.1 Unconditional release and protection of children 4.2 Gender responsive and inclusive 4.3 Context specific 4.4 Flexible, accountable and transparent 4.5 Nationally and locally owned 4.6 Integrated 4.7 Transition and exit strategies 5. General DDR planning framework and considerations 5.1 Content considerations 5.2 Design considerations 6. Assessment \u2013 general guidance 6.1 Pre-analysis: Situating the DDR planning process 6.2 Situation assessment 6.2.1 Overall context 6.2.2 DDR-specific elements 6.2.3 DDR-relevant elements 7. Design of a DDR strategy \u2013 general guidance 8. Risk management \u2013 general guidance 8.1 Standard risk management steps 8.2 When to embed risk management in DDR planning 9. Outreach \u2013 general guidance 10. Planning document/DDR strategy \u2013 general guidance on structure 10.1 Content of the DDR strategy 11. General guidance for the finalization of strategic planning 12. Organizational considerations DDR planning \u2013 general guidance 12.1 Structures Annex A: Abbreviations 3.10 Integrated DDR Planning: Processes and Structures", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "a42f48eb-dd63-403a-aec4-5cf4e9886f6e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Summary Successful international support of DDR processes demands considerable planning. Given the many different actors involved in the various stages of DDR processes and the complex links within DDR processes and with other conflict or post-conflict responses, integrated planning, effective coordination and coherent reporting arrangements are essential. Past experiences have highlighted the need for the various actors involved in planning and implementing DDR, and monitoring its impacts, to work together in a complementary way that avoids duplication of effort or competition for funds and other resources. This module provides guidance for conducting the strategic planning of international support to DDR processes. Such planning is anchored in established DDR principles and aims to strengthen national leadership and ownership. It begins with an integrated assessment of context, needs, capacities and mandates that provides the basis for the identification of the most appropriate DDR processes, the formulation of strategic approaches with clear objectives, and the determination of clear roles and responsibilities. Strategic planning shall be gender responsive and include a robust risk management element throughout the process, as well as a comprehensive outreach and communication dimension tailored to the relevant DDR audiences, in order to secure buy-in and enable implementation. The process should result in a comprehensive strategic plan of support, a DDR strategy, to which individual entities (UN peace operations; UN agencies, funds and programmes; national authorities/stakeholders; other Member States/donors; and implementing partners) contribute through their respective programmatic instruments (e.g., mission plans, country and programme documents).", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "565c3a2b-b8c2-4eed-ad8e-6c3999c7f1d8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "1. Module scope and objectives This module outlines a general strategic planning process for providing and structuring support for DDR processes. The scope of the module covers all DDR measures \u2013 jointly constituting a process \u2013 presented in IDDRS 2.10 on The UN Approach to DDR: DDR programmes, DDR-related tools and reintegration support in all relevant contexts, including UN mission and non-mission settings, as well as in contexts where preconditions for DDR programmes do not exist. The planning process should be cognizant of the context, needs and capacities, and determine which types of interventions, or a combination thereof, are the most appropriate. In particular, this module provides guidance on: Situating the planning of DDR processes within the broader national and regional context; Undertaking analyses and assessments to provide data and evidence for strategic choices, and identifying knowledge gaps (discussed in greater detail in IDDRS 3.11 on Integrated Assessments for DDR); Identifying the appropriate DDR process, including the combination of measures to form such a process; Determining the goal of the DDR process; Determining strategic objectives and the most appropriate course of action to meet these objectives; Articulating, in general terms, roles and responsibilities and identifying the key programmatic and operational dimensions for implementation (see IDDRS 3.20 on DDR Programme Design); Embedding risk management in the planning process as a critical enabler of plan delivery; Designing a planning process that is both inclusive and rigorous, including using the most appropriate planning techniques at any given moment, and identifying the right planning products for the types of actions considered; and Determining and accessing the capacities and skills required to ensure an efficient, effective and integrated DDR planning process. This module provides guidance at the strategic planning level. More detailed coverage of the programming and monitoring and evaluation of DDR processes is found in IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on Monitoring and Evaluation of DDR, respectively. Assessments needed for DDR planning are discussed in greater detail in IDDRS 3.11 on Integrated Assessments for DDR.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "0ae57a61-564a-437d-bcd8-95fd45172372", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 3, + "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. In addition, this module defines planning as the process of setting objectives, determining the proper course of action to achieve these objectives, and aligning the means with the course of action.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "4295a31d-f344-461a-a14e-c010ce255549", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "3. Introduction The successful implementation of DDR processes often requires difficult compromises and trade-offs among various political, security, humanitarian, human rights and development considerations. It hinges on intense and careful coordination of interventions among a wide range of national and international actors across multiple phases and dimensions of DDR, all implemented under a clear, coherent and shared vision of what needs to happen and which objectives need to be met. It also entails a thorough understanding of context, interests and risks, as well as careful consideration of operational realities and requirements. Whatever the type of DDR process, the nature of DDR carries high risks for all those involved, from direct participants to beneficiaries, such as host communities, Governments, implementing actors and donors (see IDDRS 3.21 on DDR Process Stakeholders). For the UN and its partners, supporting Government-led DDR processes requires rigorous and inclusive planning, undertaken to achieve alignment between needs, expectations, objectives, DDR processes and approaches, roles and capacities. To ensure that DDR programmes effectively address the different experiences of men and women, and acknowledge the implications of gender identities in relation to violence, gender perspective needs to be mainstreamed and addressed as early as possible in the design and planning of DDR programmes. To ensure this, assessment teams shall deploy gender expertise, including both international and national gender experts, together with DDR experts. Methodology shall ensure the involvement of local experts, women\u2019s groups and organizations working for gender equality. Sufficient resources for translators, notetakers and other aids to equal participation shall be planned for in advance of field activities. The module\u2019s content and the guidance it provides are based on the recognition that planning DDR processes is a challenging task, for a number of reasons, including: The complexity and highly political sensitivities involved across all types of DDR processes (see IDDRS 2.20 on The Politics of DDR), which may at times translate into resistance or pressures during the planning phase, including the pressure to \u2018rush into doing\u2019 before proper planning has been undertaken. The diversity, complexity and fluidity of contexts in which DDR processes take place, including the evolving nature of conflicts. The absence of reliable information required to implement DDR processes adequately (e.g., exact number of combatants or weapons). The number of national and international actors that need to be involved in or consulted during the planning phase. Competing priorities within DDR processes and beyond, and the political, financial and technical pressures that emanate from these competing priorities. The unique political challenges often posed by addressing the specific needs of men, women, boys and girls, as well as marginalized groups, and the additional human and financial resources required to ensure the planning process is gender responsive. The need to identify, analyse and manage links between DDR processes and many other crisis and conflict management, peacebuilding and sustaining peace imperatives (e.g., security sector reform [SSR], conflict recovery and reconstruction, poverty alleviation and promotion of gender equality). It is important for actors involved in planning DDR to be aware of the challenges and to formulate strategic planning that recognizes and, to the extent possible, manages them. These challenges do not dissipate once the planning is over. Many carry over into the implementation phase. Therefore, strategic planning must establish adequate controls, in the form of risk management measures, for implementation. The module therefore places particular focus on strategic planning for risk management.", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": true + }, + { + "ID": "c2c4630f-b5a7-4f82-be16-f2ed7612e2e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to planning for DDR processes.", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + }, + { + "ID": "155e9820-3518-4bd4-8958-5ea72fc558b2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 4, + "Paragraph": "4.1 Unconditional release and protection of children DDR strategic planning shall prioritize the immediate release of children associated with armed forces and groups, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. When DDR programmes, DDR-related tools and/or reintegration support are implemented, children shall be separated from armed forces and groups and handed over to child protection agencies. Children will then be supported to demobilize and reintegrate into their families and communities (see IDDRS 5.30 on Children and DDR).", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "953f690e-42fc-4701-b5ee-2936e93606c2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.2 Gender responsive and inclusive Non-discrimination and fair and equitable treatment are core principles in both the design and implementation of a DDR programme. There is considerable diversity in how individuals and groups understand, experience and express gender through the roles they take on, the expectations placed on them, their relations with others and the complex ways that gender is institutionalized in the strategic planning phase. Integrating gender in DDR requires that during strategic planning, practitioners take account of the specific needs of girls, women, men and boys with respect to both biological/sex differences and sociocultural gender differences, as well as the capacities they bring and contributions they can make. All DDR processes should be planned in a manner that promotes gender equality and should be grounded in a rights-based approach. In the strategic planning as well as implementation phases, DDR practitioners should be able to clearly distinguish between the practical and strategic needs of girls, women, boys and men in DDR and how this relates to all levels of design (see IDDRS 5.10 on Women, Gender and DDR).", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "aaf9c7f0-31e2-4859-87c7-74b4ef0405d9", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.3 Context specific DDR strategic planning shall be conducted in a manner that is sensitive to political and social realities, including the use of appropriate terminologies associated with DDR interventions. (In some instances, the term \u2018DDR\u2019 itself may not be accepted, and DDR practitioners may need to offer alternatives, such as \u2018interim stabilization measure\u2019 or nomenclature appropriate to the context and acceptable to the key parties.)", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "ae6844bf-f3f7-4f14-9316-044842dc7a74", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 5, + "Paragraph": "4.4 Flexible, accountable and transparent DDR processes are collective endeavours, requiring multiple actors to be accountable to each other for constructive engagement during the strategic planning phase and for adherence to agreed outcomes from the planning phase (including mutual accountability of national and international actors). DDR strategic planning takes place in highly fluid and complex environments and so it must be cognizant of, and respond to, changing circumstances. While it must follow established standards, DDR strategic planning shall be carried out with flexibility \u2013 for example, with regard to timelines and participants. In addition, it is essential for those responsible for the planning of DDR to avoid preconceived solutions and to be prepared to adapt throughout the planning phase, as changes are inevitable. DDR strategic planning presents the opportunity to explore and agree on ambitious but realistic goals, objectives, roles and responsibilities. In the course of making such determinations, it is essential to set expectations of all partners at the right level, and especially for UN and other international partners not to over-promise. To secure trust and buy-in for implementation of DDR processes, and to ensure that expectations are clear for all relevant actors, strategic planning must be transparent in its aims, conduct and outcomes. In particular, those engaging in the planning phase must be clear about their interests, mandates and capacities and the constituents they represent.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": true + }, + { + "ID": "7c5f5fdb-d844-42e6-a11c-5282e13e419d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.5 Nationally and locally owned As is true for the DDR process as a whole, the ownership of the strategic planning process, notwithstanding who is conducting it, shall be nationally owned (see IDDRS 3.30 on National Ownership and National Institutions in DDR). National ownership does not always occur naturally, which makes it the responsibility of the stakeholders in strategic planning to foster ownership through inclusion of national actors in planning processes. DDR strategic planning shall never be done in isolation. It shall be conducted in alignment with the stabilization, peacebuilding and/or recovery framework, with synergies throughout the humanitarian- development-peace nexus. In particular, and in line with IDDRS 2.20 on The Politics of DDR, planning shall identify the political strategy or strategies to which the DDR processes will contribute.", + "Can": false, + "May": false, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "d253edc5-3137-48eb-8ccc-d9064dd654a4", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.6 Integrated Planning of DDR processes should involve all relevant UN agencies, departments, funds and programmes at both the headquarters and field levels, national counterparts, and funding and implementing partners. An integrated approach to planning shall aim to develop, to the extent possible: A common framework (i.e., one that everyone involved uses) for developing, managing, funding and implementing a DDR strategic planning process. An integrated DDR management structure (unit or section), with the participation of staff from participating UN agencies, funds and programmes and primary reporting lines to the Deputy Special Representative of the Secretary-General in mission settings or Resident Coordinator in non-mission settings. Such an approach should include the co-location of staff, infrastructure and resources, as this allows for increased efficiency and reduced overhead costs, and brings about more responsive planning, implementation and coordination. Joint programmes that harness UN country team and mission resources into a single process and results-based approach to putting the DDR strategy into operation and achieving shared objectives. A single framework for managing multiple sources of funding, as well as for coordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "a9b17009-9c08-40e2-bfa4-b374984e91d1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 6, + "Paragraph": "4.7 Transition and exit strategies As DDR processes are nationally and locally owned, planning shall be structured to enable such processes to evolve towards full assumption of DDR functions by national actors. Over time, changes in the degree to which national and local actors can and do assume such functions will require adjustments to the roles played by international actors within their mandates, including UN peace operations. Where possible, Government and national DDR institutions should actively lead the strategic planning process and be supported by UN agencies, funds and programmes.", + "Can": true, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "36f10bb1-46c1-4dfb-a728-06f96717139e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 7, + "Paragraph": "5.1 Content considerations At the outset of the DDR planning phase, practitioners should frame and articulate the content considerations, in the form of questions that need to be answered throughout the planning phase. These will define what needs to happen during subsequent planning phases, data and evidence collection, who needs to participate, and other process considerations. These questions include: What is the trigger, or reason, for planning DDR (e.g., Government request, UN Security Council mandate, peace agreement, changes in context, etc.)? Are there appropriate national policies and/or frameworks for DDR within which the planning process needs to unfold? Is there a need to support national institutions/warring parties to develop a national policy and/or framework? What is the situation, and what are the needs and capacities? What do we need to know before we proceed? What don\u2019t we know? What is the most appropriate combination of measures to form the DDR process? What are the objectives of the DDR process? What are conditions of success, and are there red lines for support (i.e., conditions that need to be met ex ante for the UN and partners to provide support \u2013 see IDDRS 2.11 on The Legal Framework for UN DDR)? How will these objectives be achieved, and by whom? What resources (human, logistical, financial) will be needed? What could go wrong and/or affect achievement of the objectives? How will we know if the objectives are being achieved or have a chance of being achieved?", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "ce6f0bb4-5f82-450d-af26-06145085c900", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 7, + "Paragraph": "5.2 Design considerations On the basis of this framing, key strategic planning design considerations include: Authority: To secure buy-in, the DDR practitioners should clearly articulate the authority \u2013 or authorities \u2013 under which the planning is being conducted (see content considerations above). Timing and duration of the strategic planning phase: This may be informed by specific DDR clauses or instructions in a peace agreement or related arrangements, by other milestones (national elections, funding deadlines, etc.) and/or by the timing of related responses (e.g., SSR). Both the timing and the duration of DDR planning are context specific, but the rationale for both should be carefully considered and clearly communicated to all relevant actors. Participation: DDR planning shall be inclusive and reflective of the diversity of interests, needs and capacities. Hence, a clear plan for outreach and engagement strategies must be defined at the outset of the strategic planning phase (see section 9 and IDDRS 3.21 on DDR Process Stakeholders for specific guidance). This plan shall include who needs to be engaged and when, to prepare accordingly (including to secure the right capacity at the right time) and transparently communicate expectations of engagement. Roles and responsibilities: To manage expectations and transaction costs, roles and responsibilities shall be defined at the outset with relation to specific planning functions, including, in particular, analysis and data collection, outreach coordination, communication, stress testing, drafting and finalization/approval.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "0d2550e6-7242-43a2-b157-3f16e3a7f46f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "6. Assessment \u2013 general guidance DDR practitioners should conduct two phases, pre-analysis and situation assessment, as follows: FIGURE 1: THE TWO PHASES OF THE DDR STRATEGIC PLANNING PROCESS", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "b6ba4087-2d92-4bbc-91f2-97804beb71e1", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 8, + "Paragraph": "6.1 Pre-analysis: Situating the DDR planning process The first step in developing a strategic plan for potential DDR processes is to situate the planning exercise at four levels: Moment: Why is strategic planning required now (e.g., UN Security Council mandate, peace agreement, specific Government request, changes on the ground)? Situating in the moment provides the authorizing framework(s) to guide planning. Scope: Based on the authorizing frameworks, are there predetermined boundaries to the strategic planning? These can be geographical (e.g., DDR processes across the entire country or in targeted locations), temporal, process specific (e.g., reintegration) and/or beneficiary specific. Audience: To whom will the strategic plan apply? Considering the nature of DDR processes, and the need for coherent approaches across a wide range of actors, strategic plans should provide for unity of effort to all relevant DDR actors, both national and international, who will then translate the plan into entity-specific programmes (see IDDRS 3.20 on DDR Programme Design). However, in some cases, the strategic plan may not apply to all actors. It is therefore important to clarify the plan\u2019s audience at the outset. Other plans: The relationship between the DDR strategic plan and other national and international plans must be clarified at the outset. At the national level, in particular, relevant plans with which the DDR planning process should be harmonized include national development, United Nations Sustainable Development Cooperation Frameworks (UNSDCF) peacebuilding and recovery plans, sectoral plans, and possible action plans to end and prevent grave violations against children. In contexts where a UN peace operation is deployed or being considered, it is important to align DDR planning with UN mission planning requirements and timelines, notably the timing and content relationship between: The DDR assessment and the UN systemwide strategic and technical assessments; and The DDR strategic plan and the Secretary-General\u2019s report to the UN Security Council.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "bf681b3f-58a7-4ab1-93e1-1706d3b77dbe", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 9, + "Paragraph": "6.2 Situation assessment The DDR strategic plan should be based on an in-depth understanding of the international, regional, national or local context and the situation in which DDR is to be implemented, as this will shape the choice of DDR process, its objectives, overall approach and criteria for participation. The main elements of the contextual analysis shall always include the three dimensions that follow.", + "Can": false, + "May": false, + "Shall": true, + "Should": true, + "Must": false + }, + { + "ID": "3aca83b9-4990-47e7-9338-829eb2e3992c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 9, + "Paragraph": "6.2.1 Overall context The assessment shall begin with the broad political, social and economic characteristics of the operating environment, with a particular emphasis on: The political situation, including recent evolution, current political arrangements and dispensation, and near-term milestones (e.g., elections) and risks to political stability that may impact DDR processes and the intersectionality with gender dynamics (see IDDRS 2.20 on The Politics of DDR for suggested assessment questions). The regional environment, the relationships between the country and its neighbours, and the regional dynamics that may influence DDR, including migration, displacement and organized criminal networks (see IDDRS 5.40 on Cross-Border Population Movements and IDDRS 6.40 on DDR and Organized Crime). The security situation, including a gendered understanding, and the sources, causes and triggers of armed conflict, with data on levels of armed violence and organized crime, levels and types of victimization, and local perceptions of security. The human rights situation, based on disaggregated data on patterns of political and socioeconomic exclusion and discrimination, and relevant institutional capacities and legal frameworks. The women, peace and security context, including the role women have played in conflict and in armed groups, the gender situation with regard to political and socioeconomic equality and opportunities, sexual and gender-based violence statistics and patterns, and relevant institutional capacities and legal frameworks (see IDDRS 5.10 on Women, Gender and DDR). Gender-specific needs, capacities, experiences and knowledge of women and men, including their relevant access to decision-making positions and resources, gender-specific vulnerabilities, gender dynamics, roles and images in society, based on sex-disaggregated qualitative and quantitative data and an analysis of gender roles and norms. The child protection situation, based on information and trends pertaining to grave violations against children, including the recruitment and use of children by armed forces and groups and opportunities for their reintegration (see IDDRS 5.20 on Children and DDR). The situation of youth, including levels of unemployment and disenfranchisement that may have led to recruitment into armed forces and groups,\u00a0as well as capacities to harness\u00a0for peace (see IDDRS 5.30 on Youth and DDR). The socioeconomic situation, including employment levels and opportunities, sources of economic growth and labour demand, national resource management, and regional and local disparities. National infrastructure for social services, including measures of access across vulnerable populations (notably in health, psychosocial support, education and vocational training).", + "Can": false, + "May": true, + "Shall": true, + "Should": false, + "Must": false + }, + { + "ID": "e9336f5d-8977-4186-8b5b-7415247b5a6f", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 10, + "Paragraph": "6.2.2 DDR-specific elements DDR-specific elements that must be part of the overall assessment include: Current DDR and existing DDR frameworks (e.g., provisions in peace accord, amnesties, national strategies) and all relevant laws, treaties and conventions in force in the country that have a bearing on potential DDR, including regional and international arms control instruments. Existing national and local capacities for DDR processes (e.g., disarmament/weapons and ammunition management, demobilization, reintegration, community violence reduction [CVR]), including the release and reintegration of children associated with armed forces and groups with a focus on DDR-specific institutions (e.g., national commissions) as well as other relevant institutions (e.g., Ministries of Health, Education). Capacity of communities to absorb former members of armed forces and groups, including children and youth formerly associated with armed forces and groups, and/or to support community-based DDR processes (e.g., CVR). National and local budgetary allocations for DDR (past and present). DDR funding and donor strategies, past and present, and the level of support to fund new, additional or expanded DDR efforts. Overview of armed forces, groups and gangs, including age- and gender-disaggregated data, information on force/group strength, location, organization and structure, political affiliations, number and type of weapons, ammunition and explosives, etc. In addition, the assessment should explore previous DDR efforts to understand achievements and challenges, and extract lessons that can inform future DDR. This should also include a critical examination of the role and track record of UN and other international actors in previous DDR processes. This assessment should inform the determination of roles and responsibilities (see section 7).", + "Can": true, + "May": false, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "bb62dabe-5c5e-4f59-884e-8f8a29de3f05", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 11, + "Paragraph": "6.2.3 DDR-relevant elements In addition to the overall context and DDR-specific dimensions, the assessment must cover other elements to which DDR may be connected: Local and national peace mediation efforts; Reconciliation and transitional justice frameworks and initiatives (see IDDRS 6.20 on DDR and Transitional Justice); Status of SSR (see IDDRS 6.10 on DDR and Security Sector Reform); Stabilization, peacebuilding, recovery and reconstruction plans; Women, peace and security; and Any other sustaining peace initiatives of potential relevance. Across these different elements, the assessment should strive to establish a baseline against which to measure strategies and changes that would be directly attributable to planned DDR or to which DDR could contribute.", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "6013f18f-240d-42f9-bcf9-917f6a77b2d6", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 12, + "Paragraph": "7. Design of a DDR strategy \u2013 general guidance Based on the assessments, as described in section 6 above and in IDDRS 3.11 on Integrated Assessments for DDR, the design of a DDR strategy should follow a structured planning phase, focusing on the intersection between what is needed and what can be done. What is needed combines the situation on the ground and what is being requested (by Government, the Security Council, etc.). What can be done is determined by capacities (human and financial, existing and to be mobilized) and red lines (see IDDRS 2.11 on The Legal Framework for DDR and IDDRS 2.30 on Community Violence Reduction). The intersection between these two dimensions provides the framework for the DDR process. Within this framework, DDR practitioners should follow the sequence of steps outlined below. Step 1 It is important to make the rationale for the type of DDR process very explicit, linking it to the nature of the problem(s) and explaining why the selected process is the most appropriate under the current context (see IDDRS 2.10 on The UN Approach to DDR). (Note: DDR planning is susceptible to cognitive bias risk, whereby solutions that were implemented in another context are replicated because the two environments share similar features. Basing the planning as much as possible on a detailed analysis of the target country/context [see IDDRS 3.11 on Integrated Assessments for DDR] should help overcome this bias.) When selecting DDR processes, it is often useful for DDR practitioners to articulate alternatives and explore why they would not be viable and appropriate solutions to the identified problem(s). A planner should also keep in mind that, if a diligent planning process leads to the conclusion not to pursue DDR in a given context, that is a valid planning recommendation. Step 2 It is important to determine the scale and scope of the DDR process, notably with regard to geographical location, and definition, type and number of potential participants and beneficiaries. If relevant, the planning should define any prioritization of location and/or participants and beneficiaries. For armed groups, for example, prioritization should be based on their involvement in or potential to cause violence, or otherwise affect security and the peace process (where relevant). Groups with specific needs, such as women, men, persons with disabilities and persons with chronic illnesses, should be explicitly identified. Step 3 The critical step of establishing roles and responsibilities must cover all relevant national and international actors in the DDR process. IDDRS 3.21 on DDR Process Stakeholders and IDDRS 3.30 on National Ownership and National Institutions in DDR should be used for guidance. Roles and responsibilities will be different in mission and non-mission settings. The objective is to determine, as explicitly as possible, the nature of the roles and responsibilities. In a DDR process, such roles will vary greatly, and include policymaking, strategic oversight, direct implementation, funding, logistics, advocacy, communication and/or monitoring. Roles and responsibilities should be determined on the basis of mandates and capacities (including track record in country, if relevant, which should be examined as part of the assessment). As such, the planning should outline specific expected roles and responsibilities of all relevant actors, beyond DDR-specific institutions, such as institutions and partners providing access to social services (psychosocial, health, education, etc.). This step is the opportunity to: Define the roles of all stakeholders, including vulnerable groups, as decision-makers in the process. Enable each stakeholder to prepare accordingly, and to identify any capacity-building needs or other type of support that may be required prior to implementation, in addition to any capacity-building activities during implementation (see IDDRS 2.10 on The UN Approach to DDR\u2013 for further guidance). Identify and understand any source of resistance (or spoiler), and address accordingly. Determine the relationships among these roles, notably, if and how roles enable one another, and how to sequence them. Step 4 It\u2019s important to delineate strategic approaches: DDR practitioners should define the way in which the particular DDR process will be carried out (see IDDRS 3.20 on DDR Programme Design). This includes the formulation of key activities (with more details to be provided in specific programmatic documents and work plans), as well as considerations of sequencing within each process, and between the DDR process and other interventions such as SSR, transitional justice or reconstruction (see IDDRS 2.20 on The Politics of DDR, section 6.3). A dedicated focus of the strategic approaches should be on the capacity-building required to implement a DDR process. Jointly with national actors and donors, the UN DDR planning team should design a clear capacity-building plan, with costs, for the duration of the plan. This plan can be linked to relevant activities (embedding capacity-building in other activities) and/or be framed as a stand-alone program under the overall strategic plan, with dedicated activities and resources. The focus should not be just on DDR-specific institutions, especially if the DDR processes include reintegration elements; in such cases, the DDR planning team should determine capacity support needs of other Ministries (e.g., Education, Health). Finally, the strategic approaches should define sequences of key activities around milestones or benchmarks that would trigger (i) activation of the next activities and (ii) changes in roles of the UN and partners as relevant, including transfer of responsibilities and termination of activities. Step 5 For each DDR measure, the planning must present the relevant legal frameworks (see IDDRS 2.11 on The Legal Framework for UN DDR). This step is important to identify policy, programmatic, communication and operational implications, including any additional red lines not identified in the first step of the process. The legal framework also informs the determination of roles and responsibilities. In situations where there is no identifiable national legal framework, strategic planning will need to foresee steps to help the national authorities establish one. Step 6 The determination of roles enables the planning of the most appropriate governance and coordination arrangements. These shall be established in a manner that promotes national leadership and ownership of the DDR process (see IDDRS 3.30 on National Ownership and National Institutions in DDR). While each context and DDR process will require tailored governance and coordination arrangements, standards usually include: A strategic oversight mechanism, at ministerial level, with senior UN leadership (often in a co-chair role) and high-level representatives from donors, implementers and civil society; and A programmatic and operational coordination mechanism, often led by the national DDR commission (or similar institution), with all relevant implementing partners. Step 7 DDR processes may involve large logistical and administrative requirements (see IDDRS 3.40 on Logistical Support for DDR).The value of embedding logistical requirements early in the planning phase and as an integral element of the plan is twofold: it grounds the DDR processes in concrete costs and timelines, and it enables those responsible for providing such support to prepare accordingly, as many of these activities require a long lead time, especially in challenging operational environments. As indicated in section 12, it is therefore essential for the planning team to include experts in logistics (and mission support when a peace operation is present) at the very beginning of the process, and to subject strategic choices to a logistics test (see section 11). Step 8 For each process and its key activities, the plan should articulate an overall estimated cost and identify sources of funding. The costing of the plan should be iterative, with funding estimates revised as the objectives, scope, scale and activities are refined (see IDDRS 3.41 on DDR Budgeting and Financing). The costing should be comprehensive, and always include logistics and other operational and administrative requirements, as well as communication, monitoring and evaluation needs. In the past, failure to include such costs has undermined DDR processes. DDR programme budgets, including those of agencies, funds and programmes, should assign a minimum of 20% of the budget to all gender-related activities and female-specific interventions, including expertise and programmatic interventions to address gender-based and sexual violence (see IDDRS 5.10 on Women, Gender and DDR for additional guidance). Funding sources should include national and international dimensions: in particular, the DDR planning team should determine if and what can be funded through the national budget, based on discussions with relevant ministries and international financial institutions. Where applicable, links with local-level (regional, municipal) plans and budgets should be determined, including opportunities for budget transfers for local-level planning and implementation. Potential international funding sources include assessed contributions (when a peace operation is present), agency core resources, global funds and bilateral support (see IDDRS 3.41 on DDR Budgeting and Financing for more details). The establishment of dedicated DDR pooled funds should be considered. For each potential source, the plan should determine key parameters: nature (grant, loan, etc.), duration (short term, multi-year), accessibility (time required to secure the funding), transaction costs (resources required to secure the funding), and any other conditions, as some sources may come with restrictions (notably, on the type of activity that can be funded). All these parameters must be factored in to design a funding approach that allows the activities to be funded and implemented as planned. Potential funding sources should then be matched. They may at times lead the planning team to review the plan\u2019s design, including objectives, scope and activities, accordingly. Given the highly fluid and complex nature of the environment in which DDR processes take place, and the interdependencies with other processes, DDR practitioners should prioritize funding sources that are provided with the highest degree of flexibility and the lowest transaction costs (see also IDDRS 3.41 on DDR Budgeting and Financing). Step 9 At a strategic level, the planning process should set the overall ambitions towards which each partner will contribute by outlining a results framework. At a minimum, the strategic plan should define the following level of results: Overall goal of the plan, defined as the intended long-term effects of its implementation; these can be framed in relation to national visions and priorities, Security Council mandates; UNSDCF and/or the 2030 Agenda and the Sustainable Development Goals; and the women, peace and security agenda. Strategic objectives, defined as institutional, behavioural or legislative changes that are critical for progress towards the desired impact, and to which the various actors involved in the DDR strategic plan can collectively make a substantial contribution. They may also be presented as expected accomplishments and/or outcomes. While the strategy should focus on the high-level objectives described above, it is recommended, where possible, to include selected key outputs as well, defined as the changes in capacities, knowledge of individuals and institutions, or availability of new or improved products and services from the implementation of the plan\u2019s key activities. Doing so will enable linking the strategic planning to the programme design stage (see IDDRS 3.20 on DDR Programme Design). Together, these are the common, collective results. More specific results deriving from these common results may then be defined by each actor in their respective programming frameworks/documents (see IDDRS 3.20 on DDR Programme Design). For each result, the DDR planning team should define a small set of qualitative and quantitative indicators, with baseline, target and means of verification. The results framework with these metrics grounds the plan in what shall be achievable targets (see IDDRS 3.50 on Monitoring and Evaluation of DDR for further guidance). Finally, it is recommended to subject the plan and its results framework to a review of its \u2018evaluability\u2019. This exercise, undertaken by monitoring and evaluation experts, determines whether the plan provides sufficient and clear information to enable effective subsequent monitoring and evaluation. If not, results and their indicators, baselines and targets should be further refined. Normative obligations: in line with DDR principles, the strategic plan should articulate how the DDR processes will meaningfully incorporate considerations regarding gender, human rights and conflict sensitivity/do no harm. Therefore, as the strategic plan is being put together, as well as when it is finalized, clear approaches should be defined for each planned DDR measure and related key activities, based on the findings of the assessment. Relevant data gaps should be articulated along with remedial measures to be undertaken during implementation. Risks of non-adherence to these obligations (notably as a result of data gaps) should be included in the plan\u2019s risk register. Step 10 As a final step, the results of the process outlined above shall be summarized in a DDR strategy. See further details in section 10.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "52088e0d-a276-477f-a8e1-81e9830df10e", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 17, + "Paragraph": "8. Risk management \u2013 general guidance The implementation of DDR processes carries significant risks to all actors involved, from direct participants to donors, especially in contexts where there is active conflict. Therefore, planning such processes must include a robust risk management dimension, to ensure that all potential risks are identified and addressed both before and during implementation. The planning of DDR lends itself well to robust risk management in three ways: 1. The implementation focus: Risk management must be understood and used as an enabler of delivery, and not as a constraint or a restriction. As such, risk management reinforces the focus on implementation that drives DDR planning. 2. The consultation premium: Exposure to and comparison of different perspectives and worldviews on what constitutes a risk are necessary conditions of sound risk management. The breadth and depth of consultations required for risk management is consistent with the consultative process that underpins DDR planning. 3. The imperative of coordination and mutual accountability: In many areas, different risks involve different risk owners, and risk responses are often interrelated. These connections are particularly salient in DDR processes, with many actors responsible for managing separate but interdependent aspects of the DDR process; proper risk management therefore involves a degree of coordination and mutual accountability that can strengthen collective DDR efforts.", + "Can": true, + "May": false, + "Shall": false, + "Should": false, + "Must": true + }, + { + "ID": "6bbf2f32-5070-4a81-b09a-51d412c28585", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 17, + "Paragraph": "8.1 Standard risk management steps As with many other fields, the general approach to risk management in DDR planning should follow the general methodology provided by International Standards Organization 31000 on Risk Management. It consists of a simple but structured set of questions that can be summarized as follows: What is the context in which the DDR process is occurring? What are the objectives of the DDR process? What are the risks to the DDR process? What are the risk drivers? What is the level of each risk, as a function of the likelihood and consequence of its materializing? What are the right risk treatment measures for each risk, and are they already in place? Who owns each risk treatment measure? In following this structured line of inquiry, DDR planners should consider three critical dimensions: Specificity As DDR processes involve many actors and dimensions, it is important to be as specific as possible when identifying risks. Such specificity enables the identification of the right treatment measures and the most appropriate risk treatment owner. In particular, the plan should be as specific as possible in addressing the questions \u2018risk of what?\u2019 and \u2018risk to?\u2019 and should articulate the answers to both in straightforward risk statements. Example: The provision of reintegration support to identified participants and communities results in increased security threats (risk of) to DDR staff (risk to); the provision of cash to eligible recipients may trigger violent reactions from other individuals/communities. The specificity of the risk statement allows for specificity in the analysis of risk drivers (e.g., what generates the risks of and risks to). In the example, the risk drivers may include weaknesses in eligibility criteria and/or perceptions of unequal treatment by other communities. In turn, the more specific the risk drivers, the more specific and effective the treatment measures can be. In this example, appropriate ways to address the risk may include the provision of additional expertise to review the selection criteria, strengthening communication to other communities, and/or increasing security measures for DDR staff. These measures can reduce either the likelihood of the risk or the severity of its impact. A similar degree of specificity should apply to the owners of the treatment measures. For example, rather than assigning one risk treatment to the \u2018Government\u2019 or the \u2018UN\u2019, a DDR strategic plan should, to the extent possible, name the Government ministry or institution or the UN unit or entity that should treat the risk. Unintended consequences Risk management brings DDR trade-offs into sharp relief. For DDR practitioners, risk treatment measures often generate new, or \u2018second order\u2019, risks. For example, the increase in security measures (e.g., removing DDR staff from certain locations) will incur other risks, such as fiduciary risks, if the DDR process includes a transfer of financial resources in these locations, and/or programmatic risks if fewer capacities are on the ground to monitor if \u2018harm\u2019 is being done. Hence, in planning DDR processes and risk treatment measures, DDR practitioners should anticipate such second-order risks and establish systems for their proper monitoring.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "68c59ad1-ef27-46f5-9966-7d62b3d9798c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 19, + "Paragraph": "8.2 When to embed risk management in DDR planning Different moments in the planning of a DDR process provide an opportunity to identify risks and appropriate treatment measures. These include: The context analysis: At this initial stage, the intent is to begin identifying broad categories of risk factors (e.g., security, political dynamics) that may affect potential DDR processes. DDR planners should record them for further refinement later in the process. Design: As the DDR process is being formulated, a risk register can be gradually developed for each of the DDR process\u2019s strategic objectives, and for the overall process. For example, as mentioned in section 7, the definition of roles and responsibilities may reveal potential reluctance or resistance to the plan, which needs to be addressed prior to finalization. Finalization: Once all the elements of the process are brought together, the entire plan should be reviewed for risks. A stress-testing exercise should be conducted (see section 11). Implementation: Given the complexity of DDR processes, identified risks should be monitored throughout implementation, notably, through trend analyses of risk drivers (e.g., are the factors that generate risk increasing in intensity, in frequency?). Implementation will also inevitably yield previously unforeseen risks. As such, DDR practitioners should regularly create risk assessment moments to review existing risks and explore new ones, based on wide consultations.", + "Can": true, + "May": true, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "d644a7a3-a968-4a8a-905d-33e1ca9e715c", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "9. Outreach \u2013 general guidance In any DDR planning process, the intent of outreach is to enable implementation by developing and strengthening wide support for the planned process, while reducing potential resistance. At the very beginning of the planning process, DDR practitioners shall therefore determine who needs to be engaged, when and for what purpose (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). The range of actors who need to engage in the planning should be broad and reflect the various needs, roles and capacities found in DDR processes. DDR practitioners should follow guidance provided in IDDRS 3.21 on DDR Process Stakeholders to make such determinations, including the potential interests of each actor. The outreach should have a specific purpose, which should be communicated clearly and effectively to each actor. To determine the purpose, DDR practitioners should use the following typology of engagement strategies as a guide: Information sharing: In some instances, an actor just needs to be provided the information about the DDR process being planned in order to understand it and support it. Joint fact-finding: In this case, an actor\u2019s buy-in can be secured by being involved in the analysis and data collection that underpins the planned DDR process. Consultation: Under a consultation, an actor is solicited for his/her views on the plan (or aspects thereof). It is important to clarify that the final version of the plan may not include all or any of the inputs solicited. Failure to do so may increase resistance to the plan. Agreement: In this case, the actor\u2019s formal approval is being sought for the plan to be finalized. Without such an agreement, the plan cannot move to implementation. In the broad constellation of DDR constituents, several will just need information. Others (e.g., national DDR commission, key donor, etc.) will require a formal agreement. For many, consultations are often sufficient, as long as they are conducted meaningfully and transparently at key moments of the planning process, including as the plan is being finalized. The determination of which engagement approach is most appropriate is context specific, but it shall account for a number of principles, including national ownership and the people-centred imperative, and other considerations such as the actor\u2019s expected role in the implementation of the DDR process(s) and ability to enable or undermine their success. Note on outreach risk: For the UN and its partners, the planning of DDR processes is often conducted under circumstances of high political pressure and expectations. DDR practitioners must manage expectations and avoid making promises to any actor, and must conduct such outreach with explicit references to the overarching principles that guide DDR processes, as articulated in IDDRS 2.10 on The UN Approach to DDR and in this module.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "9cfc22e3-6484-4cad-b0a9-1b4ff6c2549d", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 20, + "Paragraph": "10. Planning document/DDR strategy \u2013 general guidance on structure The outcome of the strategic planning process should be reflected in a DDR strategy that should serve as the overarching framework from which more specific programmatic instruments derive. For the UN in particular, this document will therefore inform mission instruments (e.g., mission implementation plans, results-based budget) when a peace operation is deployed, and entity-level programme documents. The following list presents the standard hierarchy of planning documents, and where a DDR strategic plan would normally fit in such a hierarchy. Hierarchy of planning documents: UN peace operations UN Security Council Integrated Strategic Framework (ISF) DDR strategic plan Individual programme/process implementation plans by entities Results-based budget UN agencies, funds and programmes UNSDCF and/or ISF and/or Humanitarian Response Plan DDR strategic plan Joint annual work plans (which should reflect entity contributions to the DDR plan) Entity-specific programme documents (including joint programmes where relevant) The exact relationship between a DDR strategy and other formal UN planning instruments is determined by: Timing: A DDR strategy could be developed before or after an ISF or a UNSDCF, in particular. The exact timing should inform subsequent mutual revisions. Scope: A DDR strategy should apply to a wide range of actors beyond the UN. As such, it follows different procedures for design, consultation and finalization.", + "Can": false, + "May": false, + "Shall": false, + "Should": true, + "Must": false + }, + { + "ID": "fbaa2f1f-66b6-4bfa-845f-26f87fbf94e8", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "10.1 Content of the DDR strategy The development of the DDR strategy should take into account the possible existence of a higher-level document, such as a national DDR policy that may have been adopted, in certain legal systems, as a legislative act. The national DDR strategy will build on such a policy document, making sure to avoid overlaps and to provide strategic guidance to the development of programme documents (see IDDRS 3.20 on DDR Programme Design). To ensure wide buy-in for implementation and guide the development of more specific programmes, a DDR strategic plan should always provide the following minimum information, based on the process described in sections 6 and 7: 1. Summary of context and the rationale for a DDR strategy: This should include the authorizing frameworks (e.g., Security Council mandate, peace agreement, UNSDCF, etc.) for the DDR processes. 2. The universal and context-specific principles that underpin the strategy: activities. Universal (general) principles should be included (see IDDRS 2.10 on The UN Approach to DDR), but principles that are specific to the operating context and associated requirements should also be reflected. 3. The terminology, assumptions, evidence and data on which the strategy has been developed: Data gaps should be acknowledged, and the plan should articulate the impact of these gaps on strategic choices made and initiatives to address them. 4. The planned DDR process(s) organized around the DDR process: For each DDR measure, the strategy must formulate clear strategic objectives and common results, strategic implementation approaches to be used (including sequencing) and links with other DDR processes (e.g., SSR, mediation, economic development). 5. Main roles and responsibilities of national and international actors, and overall governance and coordination arrangements for the implementation and monitoring of the strategy: Where relevant, this section should explain the links between roles and areas/sources of support required by any actor. 6. Main operational considerations and requirements (see IDDRS 3.40 on Logistical Support for DDR for more details): This section should include operational constraints and challenges, and means to address them. 7. Funding framework: Based on an overall cost estimate, this should present anticipated sources of funding, disaggregated for each DDR measure, per strategic objectives and common results at a minimum. 8. Communication: The strategy should articulate the main communication principles, actions, audiences and messages, as well as roles and responsibilities; these will then be developed in the dedicated communication strategy (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). 9. Shared results framework: For the highest-level objectives, such as goal (impact) or outcomes, the document should include disaggregated results indicators, with baselines and targets, and means of verification (see IDDRS 3.50 on Monitoring and Evaluation of DDR for more details); this will become a seed for the results-based framework to be further developed as part of the programme design (see IDDRS 3.20 on DDR Programme Design). 10. Strategic plan risk register: As presented in section 8, the plan should acknowledge limitations and gaps and the treatment measures to address them. 11. Review process: Considering the risks inherent to DDR processes and the fluid environment in which DDR processes take place, the plan should clearly outline the time frame for regular reviews, and how these reviews will be organized (participants, methodology).", + "Can": false, + "May": true, + "Shall": false, + "Should": true, + "Must": true + }, + { + "ID": "827237b3-9eb7-46b6-8941-37fe10f4d931", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 22, + "Paragraph": "11. General guidance for the finalization of strategic planning Planning DDR processes shall conclude with the following steps: Stress test Stress testing is a planning technique and moment that should be undertaken shortly before the end of the process, but with sufficient lag time before the plan is to be concluded to incorporate outcomes of the stress test into the final version. Under a stress test, a team of individuals, convened under a personal capacity, reviews the plan and subjects it to a number of \u2018hard questions\u2019. The purpose is to identify outstanding gaps, weaknesses and risks and to sharpen, if need be, the plan\u2019s logic and objectives. In other words, it provides an opportunity to improve the plan before implementation. For this exercise to work, it is important to convene a stress test team of four to five impartial individuals, without any vested interest in the content of the plan. As a team, these individuals should combine DDR process expertise with knowledge of the context and strategic planning skills. Conducted in a workshop format, in the presence of UN staff and partners who have developed the plan, the stress test team should interrogate the plan along the following dimensions: Robustness of contextual analysis and of evidence, data and assumptions used; Consistency between the analysis/assessment and the choice of DDR process, and the strategic objectives chosen; Suitability of the plan to context, and adaptability to different scenarios; Implementability of the plan, including resources, capacities, logistics, buy-in of actors and evaluability; Adherence of the plan to DDR principles and normative obligations, including gender, human rights and conflict sensitivity/do no harm; and Alternative courses of action. DDR practitioners engaged in DDR planning may also choose to conduct multiple stress test exercises throughout the process; however, for these exercises to be useful, a reasonably comprehensive draft of the plan must be available. The decision to incorporate the findings and observations of the stress test team into the final version lies with the DDR practitioners in charge of the plan. 2. Communication Communicating the DDR plan is an essential part of its finalization. In doing so, DDR practitioners must follow the specific guidance in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR, notably regarding adopting contextually and culturally appropriate means of communication and ensuring accessibility by the populations and communities most affected by the plan. Communication efforts must focus on transparency and accuracy, to avoid creating unrealistic expectations. To this end, how the plan is communicated, including local translations, must be closely managed to ensure that what is being said about the plan conforms with what is in it. Reactions to the plan should be closely monitored to identify potential risks of resistance and other obstacles to implementation. Careful consideration should be given to potential misperceptions and/or manipulation of the plan, its intent and content. Communicating the plan broadly and transparently to all concerned actors also serves to reinforce the principle of mutual accountability for its success. 3. Programmatic translation The finalization of a DDR process plan marks the activation of the next phase, in which the plan is translated into more specific programmes and their work plans, with detailed timelines and budgets. Guidance for both the process and content of such programmes is provided in IDDRS 3.20 on DDR Programme Design. As articulated in section 5, many programmatic elements can be developed as the strategic plan is being designed. However, in the timeline to actual implementation, some space must be created between finalization of the plan and implementation, during which specific programmes can be completed with additional programmatic and operational details. This time lag must also account for any need to mobilize resources before implementation.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "68419ffb-4a1a-45bb-b856-348bb9ead5d2", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "12. Organizational considerations in DDR planning \u2013 general guidance The organization of a DDR planning process shall adhere to the following two imperatives: 1. Whole of UN and Whole of Practitioner approach: While there should clarity on the entity (and individuals) that will lead and coordinate the planning phase, it should be structured in a manner that provides a meaningful role for all UN entities, partners and Government institutions that may be expected to have a role in the process. In contexts where there is a UN mission with a DDR unit, the UN\u2019s engagement in the planning should not be confined to that unit; expertise from other units (including the political unit, legal, security sector reform, human rights, gender, child protection, mission support/logistics, the UN Mine Action Service, etc.) should be included. A number of UN agencies, funds and programmes need to contribute as providers of analytical inputs and normative advice, and/or as implementing entities. In contexts without a UN peace operation, the planning effort should avail itself of support from all relevant UN entities, including those in the Secretariat. It shall always ensure the inclusion of legal and dedicated normative expertise, notably in the areas of human rights, child protection and gender, sourced in-country or from regional and global offices. 2. Strong links with operations: DDR processes require careful and thorough consideration of operational requirements. Depending on the type of DDR process, dedicated planning capacities may be required for security, camp management, transportation and supply management. The planning team must also include expertise in funding instruments and resource mobilization.", + "Can": false, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "5694c52d-483e-40b6-a9fe-1b194597d857", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": 24, + "Paragraph": "12.1 Structures The structures required for planning DDR processes are a function of the UN configuration in-country. If the planning is undertaken as part of the deployment of a new UN mission, the structures used for planning the DDR process and developing a strategic plan for DDR processes should follow the guidance provided by the Integrated Assessment and Planning Policy of 2013. DDR considerations will first be embedded in a strategic assessment mission, bringing together the entire UN system (from headquarters and as representatives of the UN country team). In most cases, and following the adoption of the mandate by the Security Council, a specific DDR technical assessment team may be deployed to further elaborate the DDR plan. For both the strategic and technical assessments, the principles of inclusivity and transparency shall be followed. Governments, communities, other relevant national actors and donors should be fully engaged, and, where and when capacities exist, national authorities should lead the process. Similarly, the UN country team should, at all times, participate in the planning process, under the leadership of the Resident Coordinator. Once the UN mission is deployed, the focus of any subsequent planning must reside in-country. For the UN, the relevant units of the UN peace operation and the members of the UN country team work jointly through a dedicated DDR task force. Headquarters-level support and engagement in the planning are undertaken by integrated task forces according to integrated assessment planning principles and approaches. In contexts without a UN mission, planning for DDR processes must always be situated in-country, under the leadership of the Resident Coordinator and with all relevant UN entities supported by their respective regional or global DDR expertise. In line with the reform of the UN development system, non-resident entities, as well as relevant Secretariat entities, should be included in DDR planning efforts. In all contexts, and wherever feasible, the design of the UN and its partners\u2019 responses to national DDR efforts should be undertaken on the basis of joint planning structures. To minimize transaction costs, DDR practitioners may want to organize the planning process around three generic structures: A broad steering committee, with Government and key stakeholders (notably donors) to build the political and financial support for the outcome of the planning process; actors in related sectors (e.g., SSR, mediation, economic recovery) may be brought in periodically to ensure adequate linkages with the DDR planning process. A small core planning team or secretariat, to undertake the day-to-day planning work, including the analysis, with clear lines of communication with national counterparts. A more informal consultative mechanism (which can be replicated at local or regional levels, or divided into different stakeholders) to solicit perspectives, feedback and inputs; this mechanism can enable informal outreach to other, higher-risk parties (e.g., non-signatory groups) and gauge their positioning in relation to the envisioned processes.", + "Can": true, + "May": true, + "Shall": true, + "Should": true, + "Must": true + }, + { + "ID": "c313e324-f27f-4beb-887b-6de043d750d7", + "Color": "#00A554", + "Level": "3", + "LevelName": "", + "Title": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "Heading1": "", + "Heading2": "", + "Heading3": "", + "Heading4": "", + "Module": "IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022", + "PageNum": null, + "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction ISF \tIntegrated Strategic Framework SSR\tsecurity sector reform ToC\ttheory of change UNSDCF\tUnited Nations Sustainable Development Cooperation Framework", + "Can": false, + "May": false, + "Shall": false, + "Should": false, + "Must": false + } +] \ No newline at end of file diff --git a/static/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json b/media/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json similarity index 97% rename from static/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json rename to media/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json index 5636aa5..6d83c98 100644 --- a/static/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json +++ b/media/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json @@ -1,6 +1,6 @@ [ { - "ID": "8fe04957-f880-48c5-8a99-2b921cdd4875", + "ID": "bc949694-9109-4469-a63b-58a273783f4f", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -19,7 +19,7 @@ "Must": false }, { - "ID": "c25af8ba-364c-46c5-81be-011b04ceeea3", + "ID": "5ee8f893-b0fa-4b37-89bf-2df1182a1d31", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -38,7 +38,7 @@ "Must": false }, { - "ID": "8e88044b-6d97-46b5-b445-d3e053a65da1", + "ID": "cafa8fd4-ae4b-4e11-bd0e-1b59c7370c80", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -57,7 +57,7 @@ "Must": false }, { - "ID": "3d8860e6-dc9a-49b6-94fe-2b93b9d94c09", + "ID": "2df508f8-82b9-47fb-acfd-d44b02942ef5", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -76,7 +76,7 @@ "Must": true }, { - "ID": "475e920c-3530-428e-9288-eca0a528efc8", + "ID": "e479da79-358b-4c7d-83b7-aa24ca82bc78", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -95,7 +95,7 @@ "Must": true }, { - "ID": "cb0e8bf0-9091-4fd0-b6da-252e71beae24", + "ID": "22fc1664-69ff-4d60-a62d-0e912b992a08", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -114,7 +114,7 @@ "Must": false }, { - "ID": "1a3133a7-7c41-4078-9891-8eeec6563b35", + "ID": "cb026e15-039d-4046-b0d4-a4ad6e85ef83", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -133,7 +133,7 @@ "Must": false }, { - "ID": "97db3733-9037-4225-a334-622710e1f8e7", + "ID": "213ce9b8-b3f2-44fa-adae-15d000300500", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -152,7 +152,7 @@ "Must": false }, { - "ID": "0d70927d-efbc-4b15-8888-aa1310ca033d", + "ID": "af549190-9d89-433d-a3b7-a8b7c55f39b3", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -171,7 +171,7 @@ "Must": false }, { - "ID": "8e4b31c8-818b-414f-90bc-355950faa026", + "ID": "386befa8-c494-47d6-aa92-8dbb833eadff", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -190,7 +190,7 @@ "Must": false }, { - "ID": "c72c1a78-132e-435e-aea2-81ae824ce67f", + "ID": "0431cbb5-7ade-42cc-8e7b-039a0f6c2b72", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -209,7 +209,7 @@ "Must": false }, { - "ID": "021c01b9-110a-4bca-bf5f-d1a0c2f9e6a0", + "ID": "d34eb36c-4952-48f2-aa65-225dde3df101", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -228,7 +228,7 @@ "Must": false }, { - "ID": "049d7dc6-c0e4-4d0e-9161-64c3c4083ae5", + "ID": "207fd172-fb6e-4aff-97f1-a323f5da1f9e", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -247,7 +247,7 @@ "Must": true }, { - "ID": "1ad1b506-b525-4356-bd5c-7e491bc52d20", + "ID": "888b2801-21dd-4383-a73b-c6a3bfe45782", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -266,7 +266,7 @@ "Must": true }, { - "ID": "a0f76bc0-07ac-440d-9848-c47c83e47a5f", + "ID": "427edc7a-bb04-4fe2-870f-4bcca3f86757", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -285,7 +285,7 @@ "Must": false }, { - "ID": "245b4ae5-c00d-4932-a5c6-1229227b9b9a", + "ID": "20ab6d28-65c9-4373-9007-0bc4fe331831", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -304,7 +304,7 @@ "Must": false }, { - "ID": "3860b21b-326f-48c8-a407-cb17684033ea", + "ID": "8896cae6-c417-4e6f-ac21-f09f373933e0", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -323,7 +323,7 @@ "Must": false }, { - "ID": "2a1d1136-a243-4c38-865c-eddca55e32a6", + "ID": "31c2ec89-4e31-4781-beed-fecfd880b4bb", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -342,7 +342,7 @@ "Must": false }, { - "ID": "a339cfbb-f86d-4cc3-8f12-6e250ebf23bc", + "ID": "76a5c111-d2ee-4ef4-8685-2c899edceb0f", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -361,7 +361,7 @@ "Must": false }, { - "ID": "b1b27b52-73c3-4469-8ba9-00712024ce9c", + "ID": "6b179c53-0b4d-4c18-8a9b-138c7b8dc9a5", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -380,7 +380,7 @@ "Must": true }, { - "ID": "e409eb40-2f95-478b-8ef8-96d973504da1", + "ID": "59a271ef-0bfa-4948-ace0-d68f00e428d8", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -399,7 +399,7 @@ "Must": false }, { - "ID": "cbee8085-5ed9-43ca-9c63-5c25fc479935", + "ID": "c4327eb3-88fd-4068-9288-45b80af6ad94", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -418,7 +418,7 @@ "Must": false }, { - "ID": "afca7cb1-255f-43c5-86cc-b66a5516d319", + "ID": "829c8871-1bf9-4d9a-9cdb-13c9e871aaae", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -437,7 +437,7 @@ "Must": false }, { - "ID": "2d4844a9-6b26-4164-af2f-ef8143411c7d", + "ID": "0911d7b5-980a-46db-8585-6ac24a2e162e", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -456,7 +456,7 @@ "Must": false }, { - "ID": "a609a498-d660-45de-b017-0b95c41f8c47", + "ID": "990933c9-7f60-4dff-aa7d-e7fbf5e06996", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -475,7 +475,7 @@ "Must": false }, { - "ID": "cc2ff1a4-d304-49be-9351-a909309f26ba", + "ID": "342a2c0d-7f25-4199-afdf-334842be4da9", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -494,7 +494,7 @@ "Must": false }, { - "ID": "84a7ea10-f7e5-457e-bb00-bd58aa9e0af0", + "ID": "f0ccb85c-3656-47f4-85fc-7f4b720e7d23", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -513,7 +513,7 @@ "Must": true }, { - "ID": "c214472b-77d8-48ef-bb67-3446d285c5b1", + "ID": "099e27c3-10a9-4ab7-9a13-bdcbd3941163", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -532,7 +532,7 @@ "Must": false }, { - "ID": "a7616555-d98c-45a1-96c1-83e37e347c99", + "ID": "0e534a76-ccff-401b-b0aa-41eed75c4375", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -551,7 +551,7 @@ "Must": false }, { - "ID": "5fb600cd-0adc-41e3-bd4f-6a03074a1a53", + "ID": "c2d8376f-2f5e-442f-ab77-e5d54c5ce162", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -570,7 +570,7 @@ "Must": true }, { - "ID": "caa3b006-816a-4d16-b050-c2fdf7c9c66f", + "ID": "66b82a70-88a8-4dae-b9cf-363a921b84fb", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -589,7 +589,7 @@ "Must": false }, { - "ID": "9ecab374-33c1-46f9-ac27-88ccf4e424cd", + "ID": "f0901e7f-7795-4f29-a56b-162b34850cd7", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -608,7 +608,7 @@ "Must": false }, { - "ID": "88ff1683-5477-4d11-a635-5fa6d1ba61f2", + "ID": "3fe18f7e-6c5b-462f-b345-7dd89c4e3be5", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -627,7 +627,7 @@ "Must": true }, { - "ID": "04f23991-ad54-4a4c-828b-23071f86224a", + "ID": "7b2a0b12-3344-4554-949e-823f5dd9083a", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -646,7 +646,7 @@ "Must": true }, { - "ID": "20619290-dba9-4fa8-9b9b-42c3931113ae", + "ID": "c5adc039-f8d7-4bfc-bfc6-516d7dea64f5", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -665,7 +665,7 @@ "Must": false }, { - "ID": "66940411-076a-4258-809b-6796b7ce31e8", + "ID": "fc8530fa-e2a3-4a09-a53f-52140d61ada1", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -684,7 +684,7 @@ "Must": false }, { - "ID": "ef9049fe-04b7-4e74-a438-66ec5e96c04d", + "ID": "60c08552-9bdd-40ff-987a-72a295c97b8b", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -703,7 +703,7 @@ "Must": false }, { - "ID": "39a7ab9f-cf0d-4796-b934-8a78e2341961", + "ID": "27e5f453-4e80-4e52-80f4-7f9e4daebea8", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -722,7 +722,7 @@ "Must": false }, { - "ID": "0e5852ee-ecb8-44e5-824b-24a12b3d09b3", + "ID": "4e16a9d9-98be-4583-bfaf-aee2234f64a5", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -741,7 +741,7 @@ "Must": false }, { - "ID": "604437f3-85f8-41aa-a34d-b15010bf7bd2", + "ID": "2cf9eb82-d9f9-45a5-b619-7ce0b5e3822a", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -760,7 +760,7 @@ "Must": false }, { - "ID": "090b804a-3e11-40ae-8403-89db8d0bb81e", + "ID": "cbaf7ed6-d731-4870-bb93-ad3363e8710a", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -779,7 +779,7 @@ "Must": false }, { - "ID": "68b81447-1264-416f-9e80-e599f9dd7398", + "ID": "c5eae02c-3e6e-4eee-84f0-314415dbb41a", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -798,7 +798,7 @@ "Must": false }, { - "ID": "661d9b67-92e1-43ec-9270-259438d0cb76", + "ID": "ac513af3-72e3-4776-a578-290dd9931cb0", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -817,7 +817,7 @@ "Must": false }, { - "ID": "2290958f-dced-414f-9afa-c83aaad80157", + "ID": "99bc2bbe-e16e-46be-9f47-f811a68c06b9", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -836,7 +836,7 @@ "Must": false }, { - "ID": "933c5e0f-5d3d-46e2-9d99-65a1bb88258a", + "ID": "b4ec75d9-0e27-4295-952c-a2ee7fefbd10", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -855,7 +855,7 @@ "Must": false }, { - "ID": "87ebf051-23e5-48d7-94be-625dd4b5aafd", + "ID": "08988f2d-da26-4e21-b004-d5cdca866545", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -874,7 +874,7 @@ "Must": true }, { - "ID": "d0484ef2-a90a-432f-9d5d-686ef1a1d73a", + "ID": "8386573a-4415-4d79-b626-b830342ad4ba", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -893,7 +893,7 @@ "Must": false }, { - "ID": "880bd3d1-154b-4443-bd32-adcd6ae8444f", + "ID": "54a27379-ca13-44d5-95ad-c89b126dba8d", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -912,7 +912,7 @@ "Must": false }, { - "ID": "75016284-3de2-4912-ac42-13ba77d18f98", + "ID": "bd8d56e1-81f7-4208-9e93-340ca449e053", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -931,7 +931,7 @@ "Must": false }, { - "ID": "04027f69-fc42-4e0a-bec2-4f7a5d00fa0f", + "ID": "b1b4559e-b9f3-41ab-aa6c-6002ed1eda0e", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -950,7 +950,7 @@ "Must": false }, { - "ID": "89fce011-453d-4ce0-a0a4-6d62933d2ce0", + "ID": "598c8901-1651-4840-a7dd-e1281351d166", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -969,7 +969,7 @@ "Must": false }, { - "ID": "744d1019-1bad-4d0c-b36b-58c61fd6dc35", + "ID": "5b209fbc-3384-487a-8054-8b31b5e6275b", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -988,7 +988,7 @@ "Must": false }, { - "ID": "13131cbb-deea-4a06-8e09-30a8625dcfdb", + "ID": "fc9be4b5-ed39-41bc-8275-d8a6b97fe30c", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -1007,7 +1007,7 @@ "Must": false }, { - "ID": "048b5293-eddc-447d-a588-76cb3011e3d3", + "ID": "8ce63905-bc77-4504-b74f-a39a250065b4", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -1026,7 +1026,7 @@ "Must": false }, { - "ID": "f1c30eb5-cb6a-4ac1-9e4d-104b7e5d8881", + "ID": "cd99c240-0b79-4575-a8df-bb5e22024a00", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -1045,7 +1045,7 @@ "Must": false }, { - "ID": "dc889e0e-0db5-4f5c-84f6-289c92615ebf", + "ID": "8493735e-4e4e-4e8f-92a9-38a724e75b69", "Color": "#CF7AB2", "Level": "6", "LevelName": "", @@ -1064,7 +1064,7 @@ "Must": false }, { - "ID": "42e4bc22-5a14-4772-8f49-722ba080f416", + "ID": "f9206c5c-bdd6-4deb-8c71-0719b0cfa38a", "Color": "#CF7AB2", "Level": "6", "LevelName": "", diff --git a/media/data/json_log.log b/media/data/json_log.log new file mode 100644 index 0000000..7dee135 --- /dev/null +++ b/media/data/json_log.log @@ -0,0 +1,515 @@ +2023-11-30 13:02:08 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:02:08 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:02:08 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.20 The Politics of DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:02:08 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:02:08 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.40 Reintegration as Part of Sustaining Peace_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:02:08 - INFO - Number of successed saved files: 5 +2023-11-30 13:02:08 - INFO - Number of seactions: 101 +2023-11-30 13:02:08 - INFO - Number of seactions after cleaning: 5 +2023-11-30 13:02:08 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:02:08 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:02:08 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:02:08 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.025s] +2023-11-30 13:02:08 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:02:08 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:02:08 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:02:08 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.079s] +2023-11-30 13:02:09 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:02:09 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.320s] +2023-11-30 13:02:09 - INFO - File Processing completed +2023-11-30 13:06:19 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:06:37 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:06:37 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:06:37 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.20 The Politics of DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:06:37 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:06:37 - INFO - Number of successed saved files: 4 +2023-11-30 13:06:37 - INFO - Number of seactions: 71 +2023-11-30 13:06:37 - INFO - Number of seactions after cleaning: 4 +2023-11-30 13:06:37 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:06:37 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:06:37 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:06:37 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.019s] +2023-11-30 13:06:37 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:06:37 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:06:37 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:06:37 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.081s] +2023-11-30 13:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:06:38 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.329s] +2023-11-30 13:06:38 - INFO - File Processing completed +2023-11-30 13:07:54 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:08:04 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:08:04 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:08:04 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.20 The Politics of DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:08:04 - INFO - Number of successed saved files: 3 +2023-11-30 13:08:04 - INFO - Number of seactions: 38 +2023-11-30 13:08:04 - INFO - Number of seactions after cleaning: 3 +2023-11-30 13:08:04 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:08:04 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:08:04 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:08:04 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.016s] +2023-11-30 13:08:04 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:08:04 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:08:05 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:08:05 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.079s] +2023-11-30 13:08:05 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:08:05 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.302s] +2023-11-30 13:08:05 - INFO - File Processing completed +2023-11-30 13:08:47 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:08:57 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:08:58 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:08:58 - INFO - Number of successed saved files: 2 +2023-11-30 13:08:58 - INFO - Number of seactions: 5 +2023-11-30 13:08:58 - INFO - Number of seactions after cleaning: 2 +2023-11-30 13:08:58 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:08:58 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:08:58 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:08:58 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.025s] +2023-11-30 13:08:58 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:08:58 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] +2023-11-30 13:08:58 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:08:58 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.072s] +2023-11-30 13:08:58 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:08:58 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.310s] +2023-11-30 13:08:58 - INFO - File Processing completed +2023-11-30 13:10:23 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:10:36 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:10:36 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:10:36 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.40 Reintegration as Part of Sustaining Peace_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:10:36 - INFO - Number of successed saved files: 3 +2023-11-30 13:10:36 - INFO - Number of seactions: 35 +2023-11-30 13:10:36 - INFO - Number of seactions after cleaning: 3 +2023-11-30 13:10:36 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:10:36 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:10:36 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:10:36 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.017s] +2023-11-30 13:10:36 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:10:36 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:10:36 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:10:36 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.072s] +2023-11-30 13:10:37 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:10:37 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.344s] +2023-11-30 13:10:37 - INFO - File Processing completed +2023-11-30 13:12:02 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:12:17 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:12:17 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:12:17 - INFO - Number of successed saved files: 2 +2023-11-30 13:12:17 - INFO - Number of seactions: 5 +2023-11-30 13:12:17 - INFO - Number of seactions after cleaning: 2 +2023-11-30 13:12:17 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:12:17 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:12:17 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:12:17 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.016s] +2023-11-30 13:12:17 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:12:17 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:12:17 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:12:17 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.106s] +2023-11-30 13:12:18 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:12:18 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.325s] +2023-11-30 13:12:18 - INFO - File Processing completed +2023-11-30 13:18:48 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:19:18 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:19:18 - INFO - Number of successed saved files: 1 +2023-11-30 13:19:18 - INFO - Number of seactions: 3 +2023-11-30 13:19:18 - INFO - Number of seactions after cleaning: 1 +2023-11-30 13:19:18 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:19:18 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:19:18 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:19:18 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.096s] +2023-11-30 13:19:18 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:19:18 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:19:18 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:19:18 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.076s] +2023-11-30 13:19:18 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:19:18 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.301s] +2023-11-30 13:19:18 - INFO - File Processing completed +2023-11-30 13:22:17 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:22:33 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:22:33 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:22:33 - INFO - Number of successed saved files: 2 +2023-11-30 13:22:33 - INFO - Number of seactions: 5 +2023-11-30 13:22:33 - INFO - Number of seactions after cleaning: 2 +2023-11-30 13:22:33 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:22:33 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:22:33 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:22:33 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.015s] +2023-11-30 13:22:33 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:22:33 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:22:33 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:22:33 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.059s] +2023-11-30 13:22:33 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:22:33 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.355s] +2023-11-30 13:22:33 - INFO - File Processing completed +2023-11-30 13:23:39 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:24:34 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:24:34 - INFO - Number of successed saved files: 1 +2023-11-30 13:24:34 - INFO - Number of seactions: 3 +2023-11-30 13:24:34 - INFO - Number of seactions after cleaning: 1 +2023-11-30 13:24:34 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:24:34 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:24:34 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:24:34 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.016s] +2023-11-30 13:24:34 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:24:34 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] +2023-11-30 13:24:34 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:24:34 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.079s] +2023-11-30 13:24:34 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:24:34 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.331s] +2023-11-30 13:24:34 - INFO - File Processing completed +2023-11-30 13:25:37 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:25:53 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:25:53 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:25:53 - INFO - Number of successed saved files: 2 +2023-11-30 13:25:53 - INFO - Number of seactions: 5 +2023-11-30 13:25:53 - INFO - Number of seactions after cleaning: 2 +2023-11-30 13:25:53 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:25:53 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:25:53 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:25:53 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.014s] +2023-11-30 13:25:53 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:25:53 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:25:53 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:25:53 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.075s] +2023-11-30 13:25:54 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:25:54 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.341s] +2023-11-30 13:25:54 - INFO - File Processing completed +2023-11-30 13:27:45 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:33:46 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:33:46 - INFO - Number of successed saved files: 1 +2023-11-30 13:33:46 - INFO - Number of seactions: 3 +2023-11-30 13:33:46 - INFO - Number of seactions after cleaning: 1 +2023-11-30 13:33:46 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:33:46 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:33:46 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:33:46 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.013s] +2023-11-30 13:33:46 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:33:46 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:33:46 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:33:46 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.054s] +2023-11-30 13:33:46 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:33:46 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.334s] +2023-11-30 13:33:46 - INFO - File Processing completed +2023-11-30 13:34:05 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:34:19 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:34:19 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.20 The Politics of DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:34:19 - INFO - Number of successed saved files: 2 +2023-11-30 13:34:19 - INFO - Number of seactions: 36 +2023-11-30 13:34:19 - INFO - Number of seactions after cleaning: 2 +2023-11-30 13:34:19 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:34:19 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:34:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:34:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.017s] +2023-11-30 13:34:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:34:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:34:20 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:34:20 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.078s] +2023-11-30 13:34:20 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:34:20 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.335s] +2023-11-30 13:34:20 - INFO - File Processing completed +2023-11-30 13:36:31 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. +2023-11-30 13:36:45 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:36:45 - INFO - Number of successed saved files: 1 +2023-11-30 13:36:45 - INFO - Number of seactions: 50 +2023-11-30 13:36:45 - INFO - Number of seactions after cleaning: 30 +2023-11-30 13:36:45 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:36:45 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:36:45 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:36:45 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.014s] +2023-11-30 13:36:45 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:36:45 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:36:45 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:36:45 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.083s] +2023-11-30 13:36:46 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:36:46 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.322s] +2023-11-30 13:36:46 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 +2023-11-30 13:36:46 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.241s] +2023-11-30 13:36:46 - INFO - File Processing completed +2023-11-30 13:37:11 - INFO - Starting file Processing ... +2023-11-30 13:37:12 - INFO - Number of successed saved files: 0 +2023-11-30 13:37:12 - INFO - Number of seactions: 0 +2023-11-30 13:37:12 - INFO - Number of seactions after cleaning: 0 +2023-11-30 13:37:12 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:37:12 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:37:12 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:37:12 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.015s] +2023-11-30 13:37:12 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:37:12 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:37:12 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:37:12 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.065s] +2023-11-30 13:37:12 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:37:12 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.277s] +2023-11-30 13:37:12 - INFO - File Processing completed +2023-11-30 13:38:16 - INFO - Starting file Processing ... +2023-11-30 13:38:19 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:38:19 - INFO - Number of successed saved files: 1 +2023-11-30 13:38:19 - INFO - Number of seactions: 50 +2023-11-30 13:38:19 - INFO - Number of seactions after cleaning: 30 +2023-11-30 13:38:19 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:38:19 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:38:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:38:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.021s] +2023-11-30 13:38:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:38:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:38:19 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:38:19 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.056s] +2023-11-30 13:38:19 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:38:19 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.305s] +2023-11-30 13:38:20 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 +2023-11-30 13:38:20 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.153s] +2023-11-30 13:38:20 - INFO - File Processing completed +2023-11-30 13:38:39 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.017s] +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:38:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:38:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] +2023-11-30 13:38:43 - DEBUG - pisaDocument options: + src = '\n\n \n \n \n \n\n \n\n Demobilization of armed groups\n \n \n \n

Demobilization of armed groups

\n \n

\n Level 2 \n
\n IDDRS IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019
\n \n
Page: 20

8.2.1. Criteria for participation/eligibility Determining the criteria that define which people are eligible to participate in integrated DDR, particularly in situations where mainly armed groups are involved, is vital if aims are to be achieved. In DDR programmes, eligibility criteria must be carefully designed and ready for use in the disarmament and demobilization stages. DDR programmes are aimed at combatants and persons associated with armed forces and groups. These groups may be composed of different categories of people who have participated in the conflict within armed forces and groups such as abductees/victims or dependents/families. In instances where the preconditions for a DDR programme are not in place, or where combatants are ineligible for DDR programmes, DDR-related tools, such as CVR, or support to reintegration may be provided. Determination of eligibility for these activities should be undertaken by relevant national and local authorities with support from UN missions, agencies, programmes and funds as appropriate. Armed groups in particular have a variety of structures — rebel groups, armed gangs, etc. In order to provide the best assistance, operational and implementation strategies that deal with their specific needs should be adopted.

\n

\n
\n \n

\n Level 2 \n
\n IDDRS IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019
\n \n
Page: None

Summary\t Integrated disarmament, demobilization and reintegration (DDR) is part of the United Nations (UN) system’s multidimensional approach that contributes to the entire peace continuum, from prevention, conflict resolution and peacekeeping, to peacebuilding and development. Integrated DDR processes are made up of various combinations of: DDR programmes; DDR-related tools; Reintegration support, including when complementing DDR-related tools. DDR practitioners select the most appropriate of these measures to be applied on the basis of a thorough analysis of the particular context. Coordination is key to integrated DDR and is predicated on mechanisms that guarantee synergy and common purpose among all UN actors. The Integrated DDR Standards (IDDRS) contained in this document are a compilation of the UN’s knowledge and experience in this field. They show how integrated DDR processes can contribute to preventing conflict escalation, supporting political processes, building security, protecting civilians, promoting gender equality and addressing its root causes, reconstructing the social fabric and developing human capacity. Integrated DDR is at the heart of peacebuilding and aims to contribute to long-term security and stability. Within the UN, integrated DDR takes place in partnership with Member States in both mission and non-mission settings, including in peace operations where they are mandated, and with the cooperation of agencies, funds and programmes. In countries and regions where integrated DDR processes are implemented, there should be a focus on capacity-building at the regional, national and local levels in order to encourage sustainable regional, national and/or local ownership and other peacebuilding measures. Integrated DDR processes should work towards sustaining peace. Whereas peacebuilding activities are typically understood as a response to conflict once it has already broken out, the sustaining peace approach recognizes the need to work along the entire peace continuum and towards the prevention of conflict before it occurs. In this way the UN should support those capacities, institutions and attitudes that help communities to resolve conflicts peacefully. The implications of working along the peace continuum are particularly important for the provision of reintegration support. Now, as part of the sustaining peace approach those individuals leaving armed groups can be supported not only in post-conflict situations, but also during conflict escalation and ongoing conflict. Community-based approaches to reintegration support, in particular, are well positioned to operationalize the sustaining peace approach. They address the needs of former combatants, persons formerly associated with armed forces and groups, and receiving communities, while necessitating the multidimensional/sectoral expertise of several UN and regional actors across the humanitarian-peace-development nexus (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Integrated DDR should also be characterized by flexibility, including in funding structures, to adapt quickly to the dynamic and often volatile conflict and post-conflict environment. DDR programmes, DDR-related tools and reintegration support, in whichever combination they are implemented, shall be synchronized through integrated coordination mechanisms, and carefully monitored and evaluated for effectiveness and with sensitivity to conflict dynamics and potential unintended effects. Five categories of people should be taken into consideration in integrated DDR processes as participants or beneficiaries, depending on the context: 1)\tmembers of armed forces and groups who served in combat and/or support roles (those in support roles are often referred to as being associated with armed forces and groups); 2)\tabductees or victims; 3)\tdependents/families; 4)\tcivilian returnees or ‘self-demobilized’; 5)\tcommunity members. In each of these five categories, consideration should be given to addressing the specific needs and capacities of women, youth, children, persons with disabilities, and persons with chronic illnesses. In particular, the unconditional and immediate release of children associated with armed forces and groups must be a priority. Children must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. Disarmament and other DDR-related weapons control activities aim to reduce the number of illicit weapons, ammunition and explosives in circulation and are important elements in responding to and addressing the drivers of conflict. Demobilization, including the provision of tailored reinsertion packages, is crucial in discharging combatants and those in support roles from the structures of armed forces and groups. Furthermore, DDR programmes emphasize the developmental impact of sustainable and inclusive reintegration and its positive effect on the consolidation of long-lasting peace and security. Lessons and experiences have shown that the following preconditions are required for the implementation of a viable DDR programme: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR; trust in the peace process; willingness of the parties to the armed conflict to engage in DDR; and a minimum guarantee of security. When these preconditions are in place, a DDR programme provides a common results framework for the coordination, management and implementation of DDR by national Governments with support from the UN system and regional and local stakeholders. A DDR programme establishes the outcomes, outputs, activities and inputs required, organizes costing requirements into a budget, and sets the monitoring and evaluation framework, including by identifying indicators, targets and milestones. In addition to DDR programmes, the UN has developed a set of DDR-related tools aiming to provide immediate and targeted responses. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation, and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may also be provided by DDR practitioners in compliance with international standards. The specific aims of DDR-related tools vary according to the context and can contribute to broader political and peacebuilding efforts in line with United Nations Security Council and General Assembly mandates and broader strategic frameworks, such as the United Nations Sustainable Development Cooperation Framework (UNSDCF), the Humanitarian Response Plan (HRP) and/or the Integrated Strategic Framework. A gender- and child-sensitive approach should be applied to the planning, implementation and monitoring of DDR-related tools. DDR-related tools may be applied before, during and after DDR programmes as complementary measures. However, they may also be used when the preconditions for DDR programmes are not in place. When this occurs, it is particularly important to delimit the boundaries of an integrated DDR process. Integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes. The UN approach to integrated DDR recognizes the need to provide support for reintegration when the preconditions for DDR programmes are not present. In these contexts, reintegration may take place alongside/following DDR-related tools, or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes also aim to contribute to preventing further recruitment and to sustaining peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. In this context, exits from armed groups and the reintegration of adult ex-combatants can and should be supported at all times, even in the absence of a DDR programme. Support to sustainable reintegration that addresses the needs of affected groups and harnesses their capacities, either as part of DDR programmes or not, requires a thorough understanding of the drivers of conflict, the specific needs of men, women, children and youth, their coping mechanisms and the opportunities for peace. Reintegration assistance should ensure the transition from individually focused to community approaches. This is so that resources can be applied to the benefit of the community in a balanced manner minimizing the stigmatization of former armed group members and contributing to reconciliation and reconstruction of the social fabric. In non-mission contexts, where funding mechanisms are not linked to peacekeeping assessed budgets, the use of DDR-related tools should, even in the initial planning phases, be coordinated with community-based reintegration support in order to ensure sustainability. Together, DDR programmes, DDR-related tools, and reintegration support provide a menu of options for DDR practitioners. If the aforementioned preconditions are in place, DDR-related tools may be used before, after or alongside a DDR programme. DDR-related tools and/or reintegration support may also be applied in the absence of preconditions and/or following the determination that a DDR programme is not appropriate for the context. In these cases, DDR-related tools may serve to build trust among the parties and contribute to a secure environment, possibly even paving the way for a DDR programme in the future (if still necessary). Notably, if DDR-related tools are applied with the explicit intent of creating the preconditions for a DDR programme, a combination of top-down and bottom-up measures (e.g., CVR coupled with DDR support to mediation) may be required. When the preconditions for a DDR programme are not in place, all DDR-related tools and support to reintegration efforts shall be implemented in line with the applicable legal framework and the key principles of integrated DDR as defined in these standards.

\n

\n
\n \n

\n Level 2 \n
\n IDDRS IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019
\n \n
Page: 5

2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words ‘shall’, ‘should’, ‘may’, ‘can’ and ‘must’ are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) ‘shall’ is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) ‘should’ is used to indicate the preferred requirements, methods or specifications; c) ‘may’ is used to indicate a possible method or course of action; d) ‘can’ is used to indicate a possibility and capability; e) ‘must’ is used to indicate an external constraint or obligation. A DDR programme contains the elements set out by the Secretary-General in his May 2005 note to the General Assembly (A/C.5/59/31). (See box below.) These definitions are also used for drawing up budgets where UN Member States have agreed to fund the disarmament and demobilization (including reinsertion) phases of DDR programmes from the peacekeeping assessed budget. These budgetary aspects are also reflected in a General Assembly resolution on cross-cutting issues, including DDR (A/RES/59/296). Further reviews of both the United Nations Peacebuilding Architecture and the Women, Peace and Security Agenda refer to the full, unencumbered participation of women in all phases of DDR programmes, as ex-combatants or persons formerly associated with armed forces and groups. DDR-related tools are immediate and targeted measures that may be used before, after or alongside DDR programmes or when the preconditions for DDR-programmes are not in place. These include pre-DDR, transitional weapons and ammunition management (WAM), community violence reduction (CVR), initiatives to prevent individuals from joining armed groups designated as terrorist organizations, DDR support to mediation and DDR support to transitional security arrangements. In addition, support to programmes for those leaving armed groups labelled and/or designated as terrorist organizations may be provided by DDR practitioners in compliance with international standards. Reintegration support, including when complementing DDR-related tools: The UN should provide support to the reintegration of former members of armed forces and groups not only as part of DDR programmes, but also in the absence of such programmes, during conflict escalation, conflict and post-conflict. In these contexts, reintegration may take place alongside/following DDR-related tools or when DDR-related tools are not in use. The aim of this support is to facilitate the sustainable reintegration of those leaving armed forces and groups. Moreover, as part of the sustaining peace approach, community-based reintegration programmes should also aim to contribute to dynamics that aim to prevent further recruitment and sustain peace, by supporting communities of return, restoring social relations and avoiding perceptions of inequitable access to resources. Integrated DDR processes are made up of different combinations of DDR programmes, DDR-related tools and reintegration support, including when complementing DDR-related tools. These different measures should be applied in an integrated manner, with joint mechanisms that guarantee coordination and synergy among all UN actors. The UN shall use the concept and abbreviation ‘DDR’ as a comprehensive term referring to integrated DDR, and including DDR programmes, DDR-related tools and reintegration support. Importantly, integrated DDR processes without DDR programmes do not include all ongoing stabilization and recovery measures, but only those DDR-related tools (CVR, transitional WAM, and so forth) and reintegration efforts that directly respond to the presence of active and/or former members of armed groups. Clear DDR mandates and specific requests for DDR assistance also define the parameters and scope of integrated DDR processes.

\n

\n
\n \n \n\n' + dest = + path = None + link_callback = None + xhtml = False + context_meta = None +2023-11-30 13:39:36 - ERROR - Internal Server Error: /data_api/upload-standard/ +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 84, in __getitem__ + list_ = super().__getitem__(key) +KeyError: 'pdfFile' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view + return self.dispatch(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch + response = self.handle_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception + self.raise_uncaught_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception + raise exc + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch + response = handler(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler + return func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 87, in upload_standard + pdfFile = request.FILES['pdfFile'] + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 86, in __getitem__ + raise MultiValueDictKeyError(key) +django.utils.datastructures.MultiValueDictKeyError: 'pdfFile' +2023-11-30 13:40:17 - ERROR - Internal Server Error: /data_api/upload-standard/ +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 84, in __getitem__ + list_ = super().__getitem__(key) +KeyError: 'pdfFile' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view + return self.dispatch(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch + response = self.handle_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception + self.raise_uncaught_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception + raise exc + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch + response = handler(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler + return func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 87, in upload_standard + pdfFile = request.FILES['pdfFile'] + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 86, in __getitem__ + raise MultiValueDictKeyError(key) +django.utils.datastructures.MultiValueDictKeyError: 'pdfFile' +2023-11-30 13:40:34 - ERROR - Internal Server Error: /data_api/upload-standard/ +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 84, in __getitem__ + list_ = super().__getitem__(key) +KeyError: 'pdfFile' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view + return self.dispatch(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch + response = self.handle_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception + self.raise_uncaught_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception + raise exc + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch + response = handler(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler + return func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 87, in upload_standard + pdfFile = request.FILES['pdfFile'] + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 86, in __getitem__ + raise MultiValueDictKeyError(key) +django.utils.datastructures.MultiValueDictKeyError: 'pdfFile' +2023-11-30 13:40:59 - ERROR - Internal Server Error: /data_api/upload-standard/ +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 84, in __getitem__ + list_ = super().__getitem__(key) +KeyError: 'wordFile' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view + return self.dispatch(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch + response = self.handle_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception + self.raise_uncaught_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception + raise exc + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch + response = handler(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler + return func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 88, in upload_standard + wordFile = request.FILES['wordFile'] + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 86, in __getitem__ + raise MultiValueDictKeyError(key) +django.utils.datastructures.MultiValueDictKeyError: 'wordFile' +2023-11-30 13:41:09 - ERROR - Internal Server Error: /data_api/upload-standard/ +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 84, in __getitem__ + list_ = super().__getitem__(key) +KeyError: 'pdfFile' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view + return view_func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view + return self.dispatch(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch + response = self.handle_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception + self.raise_uncaught_exception(exc) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception + raise exc + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch + response = handler(request, *args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler + return func(*args, **kwargs) + File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 87, in upload_standard + pdfFile = request.FILES['pdfFile'] + File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/utils/datastructures.py", line 86, in __getitem__ + raise MultiValueDictKeyError(key) +django.utils.datastructures.MultiValueDictKeyError: 'pdfFile' +2023-11-30 13:53:55 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.075s] +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:53:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:53:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] +2023-11-30 13:54:06 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:54:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.014s] +2023-11-30 13:54:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:54:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:54:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] +2023-11-30 13:54:20 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:54:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.014s] +2023-11-30 13:54:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:54:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:54:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] +2023-11-30 13:54:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:54:31 - INFO - Starting file Processing ... +2023-11-30 13:54:34 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json +2023-11-30 13:54:36 - INFO - 32 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 3.10 Integrated DDR Planning_validated copy-edit clean_23 Mar 2022.json +2023-11-30 13:54:40 - INFO - 57 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/media/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json +2023-11-30 13:54:40 - INFO - Number of successed saved files: 3 +2023-11-30 13:54:40 - INFO - Number of seactions: 150 +2023-11-30 13:54:40 - INFO - Number of seactions after cleaning: 119 +2023-11-30 13:54:40 - INFO - Number of cleaned seactions: 0 +2023-11-30 13:54:40 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:54:40 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:54:40 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.016s] +2023-11-30 13:54:40 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 +2023-11-30 13:54:40 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] +2023-11-30 13:54:40 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 +2023-11-30 13:54:40 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.057s] +2023-11-30 13:54:41 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 +2023-11-30 13:54:41 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.311s] +2023-11-30 13:54:41 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 +2023-11-30 13:54:41 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.155s] +2023-11-30 13:54:41 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 10410 +2023-11-30 13:54:41 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.033s] +2023-11-30 13:54:41 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5879 +2023-11-30 13:54:41 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.023s] +2023-11-30 13:54:41 - INFO - File Processing completed +2023-11-30 13:54:46 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:54:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:54:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.016s] +2023-11-30 13:55:05 - DEBUG - Starting new HTTPS connection (1): localhost:9200 +2023-11-30 13:55:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:55:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.013s] +2023-11-30 13:55:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:55:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] +2023-11-30 13:55:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None +2023-11-30 13:55:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] diff --git a/search_tfidf/migrations/0003_delete_filteredresults_delete_searchresults_and_more.py b/search_tfidf/migrations/0003_delete_filteredresults_delete_searchresults_and_more.py new file mode 100644 index 0000000..20d011f --- /dev/null +++ b/search_tfidf/migrations/0003_delete_filteredresults_delete_searchresults_and_more.py @@ -0,0 +1,29 @@ +# Generated by Django 4.1.3 on 2023-11-30 12:29 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('search_tfidf', '0002_alter_standards_revision'), + ] + + operations = [ + migrations.DeleteModel( + name='FilteredResults', + ), + migrations.DeleteModel( + name='SearchResults', + ), + migrations.RemoveField( + model_name='standards', + name='levelID', + ), + migrations.DeleteModel( + name='Level', + ), + migrations.DeleteModel( + name='Standards', + ), + ] diff --git a/search_tfidf/migrations/__pycache__/0003_delete_filteredresults_delete_searchresults_and_more.cpython-310.pyc b/search_tfidf/migrations/__pycache__/0003_delete_filteredresults_delete_searchresults_and_more.cpython-310.pyc new file mode 100644 index 0000000..238ac5e Binary files /dev/null and b/search_tfidf/migrations/__pycache__/0003_delete_filteredresults_delete_searchresults_and_more.cpython-310.pyc differ diff --git a/static/data/data.json b/static/data/data.json deleted file mode 100644 index 34b5a22..0000000 --- a/static/data/data.json +++ /dev/null @@ -1,8875 +0,0 @@ -[ - { - "ID": "3792d87b-88ac-47b5-a73d-cfb826e1f574", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 3.1 Purpose and rationale 3.2 Frequency 3.3 Ownership 4. Guiding principles 4.1 People-centred 4.2 Gender-responsive and inclusive 4.3 Conflict sensitive 4.4 Context specific 4.5 Flexible, accountable and transparent 4.6 Nationally and locally owned 4.7 Integrated 4.8 Well planned 5. Categories and types of integrated assessments in DDR 5.1 Integrated strategic assessments 5.2 Integrated technical assessments 6. Guidance for DDR practitioners for integrated assessments 6.1 Success factors of integrated assessments 6.2 An approach to integrated assessments in DDR 7. Risk and security assessments 7.1 General risk assessment of a DDR process 7.2 Risk and security analysis in the conduct of integrated assessments Annex A: Pre-analysis and situational assessments Endnotes", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2350dff8-a5fe-4c5a-9def-0fe9ebe66166", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "3.11 Integrated Assessments for DDR Summary This module provides DDR practitioners with guidance on leading and participating in integrated assessments in DDR. In the IDDRS, the term \u2018integrated\u2019 is used to indicate the cooperative implementation of policies, structures and processes that support effective disarmament, demobilization and reintegration processes, recognizing common strategic aims. \tIntegrated assessments are any analytical process at the strategic, programmatic or operational level which carries implications for multiple UN entities and therefore requires participation by relevant UN entities. Like DDR processes themselves, integrated assessments are highly varied, have diverse stakeholders and often are implemented in complex and risky environments and in both mission and non-mission contexts). \tAt the highest UN system level are Strategic Assessments, the analytical process used to undertake integrated assessment at the UN system-wide level. According to the Integrated Assessment and Planning (IAP) Policy, the purpose of integrated strategic assessments is: \u201cto bring the UN political, security, development, humanitarian and human rights entities together to develop a shared understanding of a conflict or post-conflict situation, role of stakeholders and core peace consolidation priorities, and to propose options for UN engagement on the basis of an assessment of risks and opportunities. Ahead of Mission start-up planning or during the lifecycle of established integrated presences, the Strategic Assessment provides a basis for the development of recommendations on the nature and (re)configuration of UN engagement for the consideration of the Secretary-General and, when required, subsequently the Security Council.\u201d While this level of integrated assessment is not discussed in detail in this module it is referenced in order to illustrate the success factors of Strategic Assessments that are relevant to inter-agency assessments conducted in preparation for and during implementation of DDR (see Integrated Assessment and Planning Policy Handbook for guidance on Strategic Integrated Assessments). These DDR-related integrated assessments are categorised as: Integrated Assessments for the DDR Strategic Planning Phase (such as Planning for Transition/Exit), Key DDR Process-Informing Integrated Assessments (such as profiling Non-State Armed Groups), and Linkage-Focused Integrated Assessments (intended to analyse linkages such as with SSR, Transitional Justice, Natural Resources, and Organised Crime). As with DDR processes, integrated assessments should be informed by and conducted with full awareness of DDR cross-cutting issues (See IDDRS level 5 on Cross-Cutting Issues). \tIn UN policy broadly these three categories of DDR-related integrated assessments may be considered \u2018technical assessments\u2019 however DDR practitioners shall be aware that there are upstream, downstream and lateral linkages between integrated assessments. Upstream linkages indicate that the integrated assessment may inform higher level strategic planning including that conducted outside of DDR. Downstream linkages indicate that some integrated assessments link to further analysis of more narrow technical issues such as logistics and budgeting. Lateral linkages are often mutually informing connections with assessments conducted for other aspects of DDR processes as well as with assessments in non-DDR but relevant sectors, namely; SSR, Transitional Justice, Natural Resources and Organized Crime. \tThese technical assessments shall be conducted in a participatory and gender-responsive manner. DDR practitioners should involve relevant stakeholders in assessments where there are implications for the stakeholders and where value can be added through their participation including as way to nurture a shared vision of the key parameters of the DDR process. The combination of participating entities and communities will vary depending on the type of assessment and the particular focus of the analytical work. Some combination of national authorities, inclusive representation from civil society (i.e. youth groups or organizations, women\u2019s groups, etc.), research institutions other local representatives, affected populations, key international partners including donors, regional and sub-regional organisations, and key member states should be consulted. \tAssessments should follow four stages in their lifecycle. For the first stage DDR practitioners should establish the rationale, objectives, participants, context, deliverables, timelines and budget for the assessment. Essentially this is the why, when, what, where, who and how of the assessment. It includes establishing the authorising framework for the assessment. Those elements should be included in one single Terms of Reference agreed by and available to all partners. \tThe second stage is the implementation of the integrated assessment. DDR practitioners should approach the implementation of the integrated assessment with full recognition that an integrated assessment may follow varied paths depending upon the rationale, objectives, participants, context, deliverables, timelines and the focus of the assessment including cross-cutting issues and DDR linkages, whether or not the assessment includes and Technical Assessment Mission, and whether or not the integrated assessment is being implemented in a mission or non-mission setting. At a generic level this implementation stage of the integrated assessment involves a situational assessment, stakeholder mapping, data collection, verification and analysis, identifying decision and action points and identifying existing capacities and weaknesses relevant to these decision and action points. \tThe third stage requires DDR practitioners to ensure that the integrated assessment informs and influences decision making. Involving relevant stakeholders in the previous phases should increase the likelihood that decisions about DDR are based on evidence. \tThe fourth stage requires DDR practitioners to ensure the monitoring and evaluation of decisions made on the basis of the analysis in the integrated assessment. As with all other aspects of an integrated assessment this may include participatory feedback mechanisms and fora. 1. Module scope and objectives This module provides guidance for situations when two or more agencies are conducting an assessment together in relation to DDR processes, but does not include detailed discussions on DDR practitioners\u2019 participation in Strategic Integrated Assessments as outlined by the Integrated Assessment and Planning Policy. The scope of the module is DDR in UN mission and non-mission settings, regardless of whether the preconditions for DDR programmes exist or not (see IDDRS 2.10 on The UN Approach to DDR). \tIntegrated assessments aim at creating a shared understanding the context, conflict and gender dynamics, the role of key stakeholders, and the different types of needs and capacities for planning a successful DDR process. Integrated assessments shall include risk assessment and shall lay the foundation for evidence-based DDR planning and implementation. \tThis module provides guidance on: Situating the role of integrated assessment in the DDR processes for the UN. The various types of integrated assessments in DDR. Success factors in integrated assessments in DDR. How to approach integrated assessments in DDR. Risk and security as part of integrated assessments in DDR. DDR practitioners should be aware that the term \u2018assessment\u2019 can be applied to most analytical work required by and outlined in the IDDRS including cross-cutting issues and linkages. Cross-cutting issues are: Women, gender and DDR. Children and DDR. Youth and DDR. Cross-border population movements. Food assistance in DDR. HIV/AIDS and DDR. Health and DDR. Disability-Inclusive DDR. While cross-cutting issues and gender analysis shall inform all integrated assessments they may also require stand-alone integrated analytical work. \tFor the purposes of the IDDRS, DDR linkages are: DDR and SSR. DDR and Transitional Justice. DDR and Natural Resources. DDR and Organised Crime. DDR and Armed Group Designated as Terrorist Organisations (AGDTO). DDR linkages will arise in sectors other than those considered in IDDRS level 6. Many will have relevance to many aspects of planning and implementing DDR processes but, like cross-cutting issues they may require stand-alone integrated analytical work. \tOf the IDDRS level 3, this module complements IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design, and IDDRS 3.50 on Monitoring and Evaluation and is relevant to most modules in levels 2 through 6 inclusive. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. \tIn the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "343b483b-e0e2-406e-9706-0da9fc477248", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "In this module \u2018DDR\u2019 is used as the comprehensive term to refer to integrated DDR processes, including DDR programmes, related-tools and reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Any particular assessments may be relevant for DDR programmes and/or DDR-related tools and/or reintegration support.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f74776aa-eee4-46e3-ab2f-6acfe5b379b3", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": 5, - "Paragraph": "3. Introduction This module builds on IDDRS 3.10 on Integrated DDR Planning: Processes and Structures. It aims to provide further guidance on integrated technical assessments as the first step in the planning, design and implementation of DDR processes. IDDRS 3.10 stipulates that for the purposes of DDR strategic planning, DDR practitioners should conduct two types of integrated assessments: pre-analysis and situation assessment. 3.1 Purpose and rationale The general objective of integrated assessments is to provide an accurate, shared and objective understanding of the context for DDR. This understanding should be shared among the UN entities and national and international stakeholders likely to play a role in the DDR process.\tIn summary, as described in IDDRS 3.10 the purpose of the pre-analysis is to: Identify the reasons for DDR strategic planning at any given time, for example, a UNSC mandate, peace agreement or government request. It situates the decision to engage in DDR strategic planning in the given authorizing frameworks. Identify the scope of DDR strategic planning. Identify the stakeholders for the DDR strategic plan. Identify other plans with which the DDR strategic plan should be harmonized. \tIn summary, as described in IDDRS 3.10 on Integrated Planning: Processes and Structures the purpose of the situation assessments is to: Provide an in-depth understanding of the international, regional, national or local contexts for the design and implementation of DDR. Identify how these contexts should inform and shape the choice of DDR process for any given situation. \tIn DDR the pre-analysis assessments and situation assessments shall be integrated. By definition an integrated assessment is: any UN analytical process at the strategic, programmatic or operational level which carries implications for multiple UN entities, and which therefore requires participation by concerned UN entities. The Strategic Assessment is the analytical process used to undertake integrated assessment at the UN system-wide level for the purpose defined in paragraph 28 of this policy. Assessments of a technical nature, such as technical assessment missions (TAMs) and sector assessments initiated by either Secretariat departments or agencies, funds and programmes, are integrated if and when their scope and operational implications relate to multiple entities of the UN system. \tPut simply, where planning has an implication for more than one UN entity the relevant assessment to inform that planning should be conducted in an integrated manner whereby the concerned UN entities participate. Integrated assessments in DDR will contribute data and analysis to relevant stakeholders including those outside the UN facilitating them to acquire a common understanding of issues relevant to DDR. Practitioners should decide whether or not to conduct the assessment in an integrated manner based on the principle that if the assessment has an implication for more than one UN entity then it should be integrated. \t\tThe process of engaging in an integrated assessment is also valuable. It may constitute the first time some key stakeholders meet and work together. The process sets the tone for cooperation needed during DDR. Inclusiveness in the integrated assessment process is important in order to foster ownership of the results of the assessment and to establish a shared vision for DDR. \tA decision on how to involve stakeholders from outside the UN system should be should be based on answering a similar question about the implications of the assessment for the non-UN entity and the value added/value to be gained by having the non-UN entity involved. DDR practitioners shall engage in an inclusive approach that facilitates key stakeholders external to the UN such as government and donors to participate in the assessment process, to develop close working relationships and to collaboratively nurture evidence-based programming. \tDDR practitioners shall involve national stakeholders in integrated assessments including those that will contribute to developing national DDR resources such as policies, strategies and programmes. The combination of participating entities and communities will vary depending on the type of assessment and the particular focus of the analytical work. Some combination of national authorities, inclusive representation of civil society (i.e., youth groups, women\u2019s groups, etc. depending on the context), other local representatives, affected populations, key international partners including donors, regional and sub-regional organisations, and key member states shall be, informed, consulted and involved as relevant. Local perspectives shall be taken into account in the analysis in the integrated assessment and in how it identifies action points. Clearly it is not necessary (and may not be possible) to involve all entities and communities in each and every integrated assessment. When deciding what/who participates DDR practitioners should use best judgement after considering many factors which may include the UN mandate, core values, how to strengthen partnerships, value added by participation and feasibility of participation. \tAt all times the involvement of national stakeholders shall be driven by the overarching guidance of IDDRS 3.30 on National Ownership and National Institutions in DDR. The participation of national stakeholders in relevant assessments should contribute to building their capacity to coordinate the participation of international partners to achieve common DDR objectives and contribute to the achievement of peace-building objectives. Where relevant, UN-led assessments should inform domestic planning and strategy for DDR and other aspects of conflict recovery and peace-building. \tIntegrated assessments in DDR will help provide information to inform the decision whether or not a DDR process is justified, to inform the decision regarding the type of DDR process suitable for the context and also the budget, engagement with stakeholders, sequencing between interventions, and synergies with other initiatives. They will contribute to ensuring that decisions specific to the type of DDR process being planned or implemented are evidence-based. Integrated assessments may provide baselines to define the specific objectives of the DDR process in each context, as well as the related M&E framework. Integrated assessments for the DDR process will feed into the broader stabilization, peacebuilding and/or recovery framework, with synergies throughout the humanitarian, development and peace (HDP) nexus. 3.2 Frequency Depending on the conflict context, the category of integrated assessment, the nature of the data, the information and analysis contained in the initial assessment and the function of the data, for example; if the data constitutes or informs DDR monitoring and evaluation, integrated assessments may need to be updated, revised or re-run during the lifespan of DDR including until impacts are fully understood (see also IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on DDR Monitoring and Evaluation). 3.3 Ownership Integrated assessments involve multiple organizations with specific interests in the process but incentives to share data can be limited. Decisions should be made early on the ownership of the assessment and how and with whom it will be shared to avoid tensions around distribution and use. Integrated assessments are a first step to coordinated efforts for a collaborative and coordinated response to a conflict situation, which considers short-term and long-term perspectives. The level of involvement and role of the national authorities can also vary but the process should be designed to nurture national ownership to the extent possible including using the assessment to develop national capacities. There can also be a differentiated engagement strategy between national political and technical services. The overall process will benefit from the strong involvement of national stakeholders at central and/or local levels. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to integrated assessments for DDR processes. 4.1 People-centred Assessments shall consider the needs and positions of all stakeholders (Government, armed forces and groups, unarmed opposition, the population and the international community) in a sensitive manner, taking into account that the DDR process will be designed to address the specific needs of different categories of participants and beneficiaries. 4.2 Gender-responsive and inclusive Gender expertise should be considered an essential element of any assessment mission carried out by the UN, specifically those teams with DDR-related mandates, ensuring conflict analysis is gendered and intersectional, taking into account masculinities, femininities, gender roles, age (with a particular focus on youth), and be informed by sex and age-disaggregated statistics. If the national DDR Commission has been formed, the assessment team should include assessment of their skills and capacities related to gender expertise and recommendations for a Gender Advisor and gender capacity development. \tEquitable access shall be ensured to all those participating in integrated assessments and in how integrated assessments consider the role, needs, assets and situation of each population group with regards to the planning for and implementation of DDR. A special emphasis should be on women and girls and on ensuring that assessments provide equitable analysis and recommendations that adhere to the principle of equitable access to opportunities and equal opportunities to speak and be heard. To ensure this, dedicated technical expertise, and budget shall be allocated. Women and gender is a cross-cutting theme of DDR but gender analysis in DDR in a given context should have a dedicated stand-alone integrated assessment. Data collected shall always be sex and age disaggregated to enable analysis and informed decision-making on programme design. \tSee IDDRS 5.10 on Women, Gender and DDR for comprehensive guidance on assessments, in consultation with the IASC Guidance Note for the Gender Marker. 4.3 Conflict sensitive Assessments shall consider the conflict dynamics in which they will be conducted, including how the assessments can be biased, as well as the fact that the interventions will operate in a conflict setting as well as on the conflict setting. Potential negative effects shall be anticipated at this stage, including what and how will change regarding power and conflict dynamics. More specifically, no individuals or groups of individuals shall be put at risk because of their participation in assessments or sharing of data. The approach to the assessment shall ensure security of the transportation and confidentiality/anonymity of the data recording, sharing and analysis. 4.4 Context specific While adhering to the standards outlined in this module, the design and implementation of assessments shall be adapted to each context. 4.5 Flexible, accountable and transparent Assessments shall consider the volatile nature of the context and the dynamics in place, to be able to anticipate and follow up on any changes that may affect data collection and the reliability of the data collected. Assessments shall be implemented in a transparent manner, to build trust and buy-in by national and international actors and ensure that objectives and potential challenges are clear for all relevant actors. 4.6 Nationally and locally owned National and local structures and stakeholders shall be consulted in UN internal DDR assessments, directly engaged in data collection for integrated assessments for the formulation of national DDR documents, and participate in the validation of the results and in the monitoring of the process as appropriate. 4.7 Integrated Assessments shall support integration and unity of effort within the UN system, including humanitarian and development actors, and with national players and coordinate the participation of international partners to achieve common objectives. The integrated approach to assessments shall develop a shared understanding which shall then become the basis for continuous assessments of the context. 4.8 Well planned Given that DDR processes are implemented in fragile security environments, both risks and operational security and safety protocols shall be decided before any intervention. Regularly updating the information collected, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR practitioners to adapt to changing circumstances (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Ownership, National Institutions and Processes in DDR). 5. Categories and types of integrated assessments in DDR Understanding the two generic categories of assessments (Integrated Strategic Assessments and Integrated Technical Assessments) will guide DDR practitioners leading or participating in implementing analytical work and planning. For all integrated assessments the following is mandatory: All assessments, regardless of title, level of focus and institutional leadership (mission or United Nations agency, fund or programme) must be conducted in an integrated manner if they have operational implications for multiple entities. The requirement (point 1 above) applies throughout the life-cycle of the integrated United Nations peacekeeping operation, political mission and/or good offices engagements. Risk analysis constitutes an essential dimension of all integrated assessments. 5.1 Integrated strategic assessments The IAP notes that Integrated Assessments and planning processes must take into account relevant UN policies in gender, human rights and children, including integrating a gender analysis. Integrated Strategic Assessments are mandatory in all cases where the deployment of a multidimensional peacekeeping mission or field-based Special Political Mission (SPM) is being considered. Where there is no integrated UN presence in place, a Strategic Integrated Assessment is undertaken by a head-quarters based Integrated Task Force (ITF) which may already exist or may need to be established. Integrated assessments will include the participation of the the UNCT. \tWhere DDR is a component of such peacekeeping operations, political missions and/or good office engagements DDR practitioners will participate in Strategic Integrated Assessments. This participation may include providing analysis on all DDR-relevant aspects of the context. The output of the assessment should be a multi-dimensional and multi-level (regional, national and local) analysis that establishes a basis for planning DDR in the given context or for considering alternatives to DDR where DDR processes are not considered appropriate or feasible. \tA DDR Gender expert should be part of the assessment team, unless the broader assessment team has a Gender Advisor who is able to provide technical advice in the design and implementation of gender-responsive assessment, including training as outlined below. In line with the Inter-Agency Working Group on DDR \u2018DDR Gender How to Guide,\u201d guidance, ensuring there is adequate gender expertise in the assessment team should be done through: Including international/national gender experts in the assessment team; Deploying DDR experts together with gender specialists; Training statement takers, information gatherers and interpreters on gender concepts and gender-specific methodology; Ensuring that adequate funding is available in order to allow participation of relevant experts and informants; Involving international, national and local experts and practitioners working on gender equality and women\u2019s empowerment through key informant interviews and validation sessions with stakeholders. To an integrated strategic assessment DDR practitioners will contribute at least an analysis of the place of DDR in the conflict context, its potential to contribute to meeting the challenges to peace consolidation, the UN\u2019s role in possible DDR in the given context and the UN\u2019s comparative advantage in DDR. This along with other relevant analysis may be translated into an Integrated Strategic Framework that when endorsed with will serve as a regular reference for an on-going field-based process of joint analysis and review of the UN-wide strategies and arrangements for peace consolidation. Under the guidance of the Secretary General and in coordination with field leadership, the Task Force and Task Force partners DDR practitioners may be called upon to contribute data and analysis normally gathered in the pre-analysis and situation analysis phase of planning DDR (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and as identified in point 4 above). Pre-analysis and situation analysis are steps in the DDR strategic planning process but DDR planners should not confuse these integrated assessments with the higher level Integrated Strategic Assessment required in the context outlined above and lead by the ITF. 5.2 Integrated technical assessments Assessments of a technical nature, such as technical assessment missions (TAMs) and sector assessments (such as governance, social sectors and economic sectors) initiated by either Secretariat departments or agencies, funds and programmes, are integrated if and when their scope and operational implications relate to multiple entities of the UN system. In DDR, Integrated Technical Assessments include: Integrated assessments for the DDR strategic planning phase (pre-analysis and situation assessments) conducted as part of the DDR Strategic Planning Process. These are comprehensively addressed in IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and are mentioned here in this module as a re-cap and to illustrate the kind of data, information and analysis DDR practitioners may be required to provide that is relevant upstream to integrated strategic assessments and downstream to planning a DDR process. The evolving nature of DDR and the evolution of DDR from sequentially implemented phases to complex interventions in fluid and changing environments and with complex stakeholders means that the methodological boundaries between assessments for strategic planning and integrated assessments for technical aspects of DDR are blurred. \tThe pre-analysis assessment will provide the overarching baseline data for a DDR process, considering that the process is not necessarily totally sequential, linear and clear cut. The baseline will be used afterwards to measure strategies and changes that would be directly attributable to the planned DDR process or to which the DDR process could contribute. Baseline data should be refined in the subsequent specific assessments used to plan the different interventions selected. \tWhen assessing which type of DDR process is appropriate, the initial assessment should examine whether certain preconditions are in place, including: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR. trust in the peace process. willingness of the parties to the armed conflict to engage in DDR. a minimum guarantee of security. The situation assessment shall always contain the elements described in Annex A of this module covering the following sections: Conflict analysis Profile of armed forces and groups and their individual members. Weapons circulation, possession, and use. Political situation and governance. Regional and international dynamics. Security. Social dynamics Gender analysis Economic, role of the private sector, infrastructures and services provided Local capacities for DDR (capacity of communities to absorb ex-combatants, availability of social services) National DDR capacities DDR relevant programme and peacebuilding interventions Process-informing integrated assessments are tailored to the planning for and implementation of specific DDR processes. Linkage-focused integrated assessments are intended to analyse DDR linkages; namely, SSR, Transitional Justice, Natural Resources, and Organised Crime. Risk assessment may be integrated into other assessments and may be stand-alone for the purposes of creating a risk matrix and mitigation strategy. The content of integrated technical assessments will vary depending on the rationale for and the focus of the assessment as well as depending on the limitations posed by the environment within which DDR will be implemented. The following presents a brief overview of some main integrated technical assessments. DDR practitioners should be flexible in how they approach technical integrated assessments and be prepared to combine foci from different assessments or use data collected in one assessment to inform or elaborate on data in a different assessment. Table 1. Overview of Main Integrated Assessments in DDR. 6. Guidance for DDR practitioners for integrated assessments The guidance for DDR practitioners presents the potential success factors for an integrated assessment, the logical approach to structuring an assessment and the generic main elements of an assessment that can then be applied to the specific areas outlined in table 1 above. 6.1 Success factors of integrated assessments DDR practitioners engaged in integrated assessments should consider the factors that contribute to successful integrated strategic assessments and apply these factors when participating in, conducting or guiding assessments in DDR. When applied to integrated assessments for DDR these include: DDR practitioners should ensure analysis is needs-driven rather than supply-driven. Any discussions about how DDR should be designed and implemented and how this impacts on UN presence on the ground should be driven by this analysis (form has to follow function). In integrated DDR the primary needs are those of participants and latterly, beneficiaries. Even where a DDR activity may target an institution (for example, capacity building national institutions with responsibility for DDR) this is done to improve the impact of DDR on participants and beneficiaries. DDR practitioners should ensure that coordination of the assessment includes close collaboration between relevant UN entities and this may include Headquarters and UN agencies in the field/UNCTs. Dedicated funding for gender expertise in assessment mission and required female personnel should be allocated at the start of planning. DDR practitioners and gender practitioners should work together to ensure design and implementation is gender-responsive and includes gender analysis. Assessments should ensure training on gender for all interviewing and documenting. DDR practitioners should ensure that when they are the lead department for the assessment that DDR staff involved clearly understand that the process of the integrated assessment shall be inclusive, transparent and conducted in a manner that fully takes into account the views expressed by all participants DDR practitioners should ensure that they and all participating parties understand that while the assessment is a joint product and should contribute to building a shared vision and understanding, the assessment process is not necessarily intended to generate consensus or an output such as a report or position paper that incorporates everybody\u2019s inputs in verbatim form. An integrated assessment can reflect substantive disagreements. DDR practitioners should ensure that their team and at least the other UN entities involved but where possible also the external participants contains the best possible experience for the particular assessment. This includes expertise in facilitating the participation of participants and beneficiaries in DDR. Where relevant DDR practitioners should take particular care to ensure facilitation expertise includes expertise in ensuring the equitable participation of women children and persons with disabilities. DDR practitioners when leading an assessment should ensure that the lead staff have extensive and successful experience with running inter-departmental/agency processes and be highly regarded by the main entities involved. The leader should also be well versed in the principles of integration and its supporting guidance. DDR practitioners should enter any integrated assessment with the understanding that it may involve a critical and honest analysis not just of ongoing UN activities in the country but also current and past efforts in DDR. This should be made evident to all participating UN entities. This aspect of the analysis should include consultations with non-UN stakeholders including government, inclusive representation of civil society (i.e. youth groups, women\u2019s groups, etc. per context), donors, international organisations and DDR participants and beneficiaries. DDR practitioners should ensure that any field mission in support of an assessment including Technical Assessment Missions are small and tightly managed so as to not overburden stakeholders on the ground. Furthermore, any assessment should leverage existing expertise and capacities on the ground including in the UNCT. DDR practitioners should ensure that if, as part of their mandate, they are undertaking technical assessments relevant to their legal mandates that they communicate to other UN entities the resulting information as appropriate and with due consideration for confidentiality including to national counterparts. In fact, while individual entities may conduct DDR-specific assessments or their mandate-specific thematic assessments may include DDR-relevant sections, the information sharing is critical for all stakeholders to build a common understanding of the operational environment and its DDR-specific aspects. DDR practitioners should ensure that any risks associated with the assessment are mitigated and that the assessment is conducted in accordance with Do No Harm principles and affording protection to participating stakeholders. 6.2 An approach to integrated assessments in DDR DDR practitioners should apply a logical approach to planning and implementing integrated assessments. This applies to setting the TOR of the assessment which essentially, is the scope of the assessment and the composition of the participating UN and non-UN entities and, where relevant, conflict affected populations. The text below presents the different stages to planning assessments. Stage 1. Establish the rationale, objectives, participants, context, deliverables and timelines for the integrated assessment and summarize it all in Terms of Reference Why. DDR practitioners shall clearly explain the rationale (the why) for the integrated assessment. When. While establishing why the integrated assessment is being done DDR practitioners shall provide a clear explanation of the importance of conducting this integrated assessment at this particular point in the life-cycle of integrated DDR. Authorising Framework. DDR practitioners shall establish the authorising framework for the assessment: an outline of the UN policy documents (this may include decision of the Security Council, Secretary-General, , Strategic Assessments, Integrated Strategic Framework) and the mandate of the lead UN entity. What. DDR practitioners shall establish the objectives of the integrated assessment. Where relevant this may refer to specific requests made by governing bodies but regardless should clearly identify what the integrated assessment is intended to achieve. This includes defining how the content of the assessment will fit with other assessments already conducted or planned for this context. Clearly establishing the objectives will normally result in DDR practitioners identifying the outputs of the assessment. For most DDR integrated assessments this is likely to be technical and analytical reports including recommendations regarding the DDR process or linkages with other stabilisation and peace-building interventions and sectors. Who. DDR practitioners leading on the integrated assessment shall establish the list of participating UN-entities (as distinct from the wider mapping on stakeholders who will participate in and be sources of data for the assessment) and where relevant other stakeholders clearly identifying the role of those who will participate in the assessment. Which entities participate will depend on which will be involved in the DDR process. Decision on which entity(ies) shall lead will be determined based on discussion with all of those involved. Terms of Reference for the mission will be established jointly. What Context. DDR practitioners shall establish the context for the inter-agency assessment. The context will vary depending on the objectives of the assessment and establishing the context will feed into or overlap with Stage 2, the implementation of the assessment. Initially it includes the policy context and the operational context for the DDR process. DDR practitioners should establish what aspects of the DDR process and DDR process implementation are relevant to the assessment and map the connections with cross-cutting issues and DDR linkages. Practitioners shall take into consideration gender dimensions. Where relevant DDR practitioners shall identify the logistic and budgetary implications of implementing an integrated assessment. How. DDR practitioners shall establish a proposed methodology for the assessment. The methodologies used in the assessment may vary considerably depending on such factors as the rationale, the objectives and the context for the assessments as well as any risks including security risks that may impact the utilisation of particular research tools, such as; community consultations or interviews with prospective DDR participants including members of armed forces and groups. . When. DDR practitioners shall establish an efficient and realistic timeline for the implementation and completion of the assessment. This shall include the delivery of outputs from the assessment. What Cost. DDR practitioners shall establish a budget for the assessment and ensure that the objectives of the assessments are in line with the resources available. In some cases, financial partners might need to be identified to support the assessment. Practitioners shall be aware that assessments may require expertise from outside the UN and the DDR partners such as through consultancies or think-tanks. This shall be factored into budgeting for integrated assessments. Stage 2. Implement the Integrated Assessment Implementing an integrated assessment may follow varied paths depending upon the rationale, objectives, participants, context, deliverables, timelines and the focus of the assessment including cross-cutting issues and DDR linkages, whether or not the assessment includes a Technical Assessment Mission, and whether or not the integrated assessment is being implemented in a Mission or non-Mission context. DDR practitioners must use good judgement and guidance from their mandate as to how the following steps are taken in any given assessment. Situational assessment. While a situational assessment is part of the strategic planning for DDR (see IDDRS 3.10 Integrated DDR Planning: Processes and Structures) most assessments will require establishing the context within which the assessment and the DDR process is being implemented. DDR practitioners will determine to what extent this includes the conflict context, an analysis of other peace-building interventions and programming and relevant comparable DDR, and a mapping of previous and existing project portfolios in the country or region by UN and non-UN entities. Situation assessments should identity data gaps and potential strategies to fill relevant data gaps during implementation of the assessment. Stakeholder mapping. DDR practitioners should ensure a mapping of all relevant stakeholders not just those who will be directly consulted for the assessment. Mapping stakeholders may include mapping the political economy of participant groups and beneficiaries including conflict-affected communities and communities where reintegration activities are planned. This aims to identify the stakeholders playing a role in peace and security dynamics, either positively or negatively. Stakeholders include national/subnational government, institutions, political parties, donors, United Nations, NGOs, international and national civil society groups, women\u2019s groups, youth groups, regional and international actors, corporate sector, customary and religious leaders, armed forces and groups, conflict actors and others. The relation to and (potential) influence on DDR should be considered (see IDDRS 3.21 on DDR Process Stakeholders). Stakeholder mapping should be tailored to the rationale and objectives of the integrated assessment. \tDDR practitioners should identify whether stakeholder mapping includes preparation to establish working committees, steering committees or consultative fora. In conflict contexts communities may be resistant to DDR and/or to the UN and so consultations and community relations may need to be managed not by UN staff but by another neutral agency or an expert with skills in conflict management. Data collection including stakeholder consultations. DDR practitioners should be aware of the many sources of data (see IDDRS 3.50 on DDR Monitoring and Evaluation) and identify the relevant sources for the integrated assessment as well as the means to maintain channels of data communication for the lifetime of the assessment or for the lifetime of DDR (as assessments may need to be repeated, updated or the data channels may be relevant for other integrated assessments). DDR practitioners should namely be aware of other assessments that have been made for this specific context and which may be relevant for obtaining data relevant for the assessment\u2019s ToR. DDR practitioners should be aware of the challenges of collecting data in environments impacted upon by fragility, conflict and violence (see IDDRS 3.50 on DDR Monitoring and Evaluation). In summary, these include: Limitations in data availability that in part arise from insecurity, the sensitive nature of the data, and the operational challenges of both mission and non-mission contexts. Particular difficulties collecting data on illicit weapons and ammunition flows and on illicit economic activities. A weapons survey is the collection and analysis of quantitative and qualitative data about weapons and ammunition, which is conducted within a specific geographical area and used to provide evidence upon which to design tailored, safe and effective arms control interventions (for further information, see IDDRS 4.10 on Disarmament). There are challenges to integration arising from the data management practices in UN entities. UN entities apply divergent approaches to data collection and management and so there is a high risk that data and analysis can become siloed within and between UN entities working in DDR even if collected for an integrated assessment. DDR practitioners should ensure that data collection should be backed-up by on-going consultation with stakeholders who may also participate in the analysis and management of data. The cost of using primary data collection over secondary data collection should be factored into the planning of the integrated assessment. \tDDR practitioners shall be aware of how DDR and DDR integrated assessments involve a wide variety of stakeholders. Integrated assessments in DDR involve consultations with stakeholders from a cross-section of the DDR \u2018ecosystem\u2019 that may range from specific needs groups (such as children associated with armed forces and groups) to technical and thematic experts (such as in logistics and budgeting technicians) to members of armed forces and groups whether signatories of peace agreements or not, to domestic and international political decision makers and influencers). DDR practitioners should be aware of how some stakeholders and implementing partners may have different and also conflicting expectations of DDR and of the integrated assessment. DDR practitioners should be aware that different stakeholders will require different approaches to consultation and so the team implementing an integrated assessment shall have the expertise to identify and, where relevant, apply the appropriate methodology to any particular consultation including participatory data collection and mapping. \tTriangulation of data is essential to ensure robust and credible evidence. This triangulation should be at various levels, between data sources, data collection methods, and specific expertise of the consultant or staff conducting the analysis. DDR practitioners shall ensure that all data collected on individuals is sex, age and where possible, disability disaggregated. \tThe following criteria ascertain the quality of the data: Validity (level of capacity of the persons in charge of collection, accuracy of the data collection protocol and level of operationalization, identification of limitations, identification of mistakes and inconsistencies). Reliability (coherence of the process through time and geographical areas, review of the collection and analysis systems, neutrality, formalization and documentation of the process). Opportunity (timeliness, accessibility, storage of the data). Accuracy (identification of missing data including sex or age, duplications). Integrity (mechanisms to limit interference, bias, data modification). Identity decision points and action points. DDR practitioners should ensure that wherever possible integrated assessments include the identification of decision points that are relevant to the design and implementation of DDR processes or that are relevant to the technical scope of the assessment. Similarly, if relevant, the assessments should include actions points and the identification of opportunities to improve the planned results of the DDR process in question. Where potential courses of actions are mapped, integrated assessments may include scenario planning to identity possible outcomes resulting from taking or not taking the mapped actions. Identify existing capacities and weaknesses relevant to decision points and action points. Where relevant DDR practitioners should ensure that integrating assessments include an analysis of existing capacities (within the UN system and external to it) that are relevant to taking any recommended course of action. For example, if an assessment recommends providing support to government to establish a new national institution with responsibility for DDR then the assessment should identify capacities, assets, opportunities and weaknesses relevant to such a course of action. Weaknesses may include potential spoilers to DDR more broadly or to the recommended course of action. Stage 3. Inform and influence decision making Regardless of the focus of any integrated assessment an objective shall always be to inform and influence decision making. DDR practitioners shall ensure that this objective follows a logical pathway from data (evidence) to decision. This means that data gathered during the assessment is clearly and transparently developed to identify factors that need to be considered in the course of decision making and then distilled further into explicit recommendations on the DDR process that is the focus of the integrated assessment or on the technical scope of the assessment. Informing decision making may include a participatory element where key stakeholders are involved in formulating recommendations. Stage 4. Monitor and evaluate In order to ensure the uptake of the recommendations of DDR integrated assessments and to collate learning from this uptake DDR practitioners may establish a participatory multi-stakeholder monitoring and evaluation framework and forum. Such frameworks and fora shall be complementary to and integrated with the monitoring and evaluation of DDR processes (see IDDRS 3.50 on Monitoring and Evaluation). \tWhere relevant DDR practitioners may use an integrated assessment to establish participatory feedback mechanisms that allow them and other relevant decision makers to reassess DDR processes, the analysis in an integrated assessment and/or the findings and recommendations contained in any particular integrated assessment. Monitoring from such mechanisms shall contribute to the decisions on whether and/or how to revise and adjust DDR. 7. Risk and security assessments 7.1 General risk assessment of a DDR process Risk is the effect of uncertainty on organizational objectives, which can be positive, negative or both. It can address, create or result in opportunities and threats. There is no risk-free pathway to achieving programmatic objectives, including in DDR. In DDR 'uncertainty\u2019 relates to our limited understanding of the future. Therefore, the identification of risks considers potential change from the expected or planned future event that might have an impact on DDR objectives. \tMost UN entities will have a formally defined internal organisational structure for Enterprise Risk Management with assigned roles and responsibilities. The role of an ERM unit/or staff member dedicated to ERM (\u201crisk owners\u201d) is to coordinate and facilitate risk management processes across the UN entity, ensuring a harmonized approach to risk management. UN entities with extensive field presence often have a network of risk focal points across their organization at field level and in HQ. The identification and managed of risk in DDR may be informed by the Enterprise Risk Management (ERM) policy or framework that the participating UN entities have at the organisational level. As with ERM, in DDR responsibility for risk identification and management should be situated at a rank at which it is possible to address senior management and have the authority to communicate across the UN entities involved in DDR. \tIdentifying and navigating through uncertainties is central to risk management. Uncertainties may impact many aspects of planning DDR including budget and timeline. By mapping, analysing and strategizing around potential uncertainties, integrated risk assessments enable DDR practitioners to understanding risks and manage them. \tDDR risk management shall enable DDR practitioners to anticipate the future of their DDR process by: Understanding the context. Thinking about what might happen, Understanding the scope and scale of the consequences of an event in the future. Making decisions that will minimize negative impacts and maximize positive ones. \tUN entities categorise risks differently. Usually this is done in the entity\u2019s ERM or Risk Register. While there are differences between UN entities, generally, risks can be grouped into a combination of the following categories that in turn may be disaggregated into various sub-categories. Risks may be interrelated; for example, an operational risk such as inadequate record keeping may have associated financial and reputational risk. Operational Risk. Operational risks include the variety of uncertainties that may arise from planning and implementing DDR. Operational risk may include sub-categories such as: financial risk, cost recovery, corruption and fraud, flexibility and opportunity management, reporting and communication, engagement of national partners in decision making, transition and exiting, and organisational risk. Strategic Risk. Strategic risk includes the variety of uncertainties linked to the DDR strategy and the issues that may arise from the strategic aspects of the operational environment in which DDR will be implemented. This may include sub-categories such as: alignment of operations with UN entity strategic priorities, roles and responsibilities among partners, public option and risks associated with the DDR Theory of Change and its assumptions. Security Risk. Security risks are managed via the UN\u2019s Security Risk Management (SRM). This is a United Nations Security Management System (UNSMS) tool to identify, analyse and manage safety and security risks to United Nations personnel, assets and operations. The SRM process is guided by a UNSMS Policy, which provides guidance to security personnel on the process. Security risk management may include sub-categories such as: armed groups, terrorism, crime, civil unrest, weapons proliferation, natural hazards, manmade hazards. Social and Environmental Risk. Social and environmental risks are potential impacts from DDR on the natural environment or communities. Social and environmental risk may include sub-categories such as: human rights, gender, community health and safety, displacement and resettlement, sexual exploitation and abuse, pollution and resource use, biodiversity and use of natural resources, built environment and heritage, and climate change Reputational Risk. Reputational risk is the potential negative impact on the UN \u2018brand\u2019 or reputation. Reputational risk can have follow-on impacts on security risks and strategic risks and may arise from most categories and sub-categories of risk. Examples of common risks often identified in DDR processes include: DDR is mandated by UN Security Council resolutions and initiated by UN peace operations despite lack of preconditions for such a programmes; The UNCT is blamed for not fully engaging in the DDR process and in particular on the reintegration component; The UN integrated approach fails to materialize on DDR; there is lack of coordination and competition for funds; Conflict between signatory and non-signatory armed groups escalates and spreads; The UN-designated lead agency(ies) on DDR in the UNCT cannot provide reintegration support in the time frame planned by the Mission responsible for disarmament and demobilization; National actors take limited or no national ownership over DDR; Implementation of DDR impacts negatively on reconciliation and justice; Ex-combatants enter illicit activities or join criminal groups instead of participating in DDR; Participants in DDR are not provided with adequate reintegration support to transition into civilian life due to lack of funding and interest of donors to invest in reintegration; National implementing partners capacity is insufficient to implement DDR; Funds are not used for planned DDR interventions (fraud, re-distribution of funds). The risk assessment process appears relatively straightforward but it is founded upon sound knowledge of the operational environment, with clear steps in risk analysis and must be undertaken in an environment where there is an understood, prescribed risk management escalation process. The risk management escalation process ensures that the risk is treated. Where the risk owner is accountable for ensuring risk is identified and managed appropriately, each treatment is assigned a Treatment Owner, the individual who is responsible for executing the activity agreed by the team to address the risk (risk treatment). The risk owner and treatment owner may be the same person. Figure 1. Risk Management and Treatment Process (Adapted from UN ERM) When a risk is analysed it should be given a score linked to the likelihood of realisation and the severity of possible impact. This may help gauge the severity of the risk and the urgency with which the risk should be mitigated. DDR practitioners who are assessing risk may use numerical scales to rate not just likelihood and possible impact but also the effectiveness of internal control. UN entities may have varying versions of risk registers used to document risk and risk treatment strategies. A DDR practitioner will be guided by the risk register adopted for a particular DDR process but such a register is likely to contain some of the following components.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "63e45385-98ef-4985-a473-423341b3d020", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": 26, - "Paragraph": "7.2 Risk and security analysis in the conduct of integrated assessments Integrated assessments should include an analysis of security conditions assumptions for the implementation of the assessments and related mitigation measures. This will serve as a basis for the broader risk management system to be implemented as part of DDR. It aims to identify threats to the DDR process and its personnel, as well as to participants and beneficiaries. \tThe assessment should identify the tolerable risks, protective or risk mitigation measures and define the expected residual risk after mitigation. Risks should be measured according to their severity and likeliness. This should cover security risks (attacks, abductions, robberies, threats), operational and technical risks depending on the specificities and sensitivity of the armed groups, and related to weapon management. \tIn developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety and that many of the activities carried out in conflict settings and related to a potential DDR process have a high risk associated with them. More specifically, the limitations and potential biases to the assessment process should be anticipated and acknowledged and addressed via broader triangulation or identification or proxy indicators while planning for integrated assessments. \tImmediate risks for the conduct of the assessment would usually include volatility of the context, security of the stakeholders involved, including protection and confidentiality of the sources, logistics, notably access to rural areas, access to geographical areas and to key stakeholders, and reliability of the data, implying the need for triangulation and an evidence-based approach (see IDDRS 3.50 on Monitoring and Evaluation). \tInterests of the armed groups, lack of neutrality and specific interests of international stakeholders, politicization and hidden political economy, overfocus on armed combatants versus other members of the armed groups and communities which have been victims. This type of limitation may imply that future programming could have reverse effects and favour some armed groups, or support indirectly the armed groups agenda, versus others. This is the case notably if a DDR process, for various reasons, only covers some armed groups while some other remain active. \tSecurity risks to the safety of personnel including external personnel or participants to the assessments. Ad-hoc security and safety protocols should be established to access to some data. The use of armed escorts can be necessary but may lead to biases of various types depending on their type. Local relays can also facilitate the data collection process but may also have their own biases or may be subject to specific local political or social constraints. Annex A: Pre-analysis and situational assessments", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "557361e3-ddad-4eef-a3a4-368d6e3260f9", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Armed Group Typologies: Assessing Armed Groups and Armed Group Membership. Analysing armed groups and the membership of armed groups is an evolving area of assessment. The following approach contains matrices for assessing the entity and the members. The matrices are underpinned by certain axioms as follows. The matrices and subsequent typology are not comprehensive; they provide lenses through which the structure and functioning of the armed group can be defined and through which the factors immediately relevant to the membership can be understood. The matrices and subsequent typology should be utilized repeatedly in the course of designing and implementing DDR. Armed groups are not static entities, they change over time in response to many different factors including both external and internal pressures and day-to-day conflict dynamics. The picture one obtains (and provisional categorization of the armed group that one makes) may change and so the typologies (or parts of them) should be repeated during DDR and any provisional categorization of the armed should be interrogated. The data collected by applying the matrices is inter-related. For example, data on foreign fighters will be connected to data on the finance of the armed group as, often foreign fighters are a source of financing or a route to raising finance for armed groups. The data collected is also related to community profiling, profiling of local and transnational patronage, profiling of conflict actors and of course the routine data normally collected in preparation for and during implementation of DDR. Our presentation of decision maps teases out these connections. All data collection and use should adhere to the Guiding Principles of the IDDRS as outlined in Module 2.10 the UN Approach to DDR and as deemed applicable to the various stages of data collection, analysis and use. The core matrix clusters the more structural aspects of an NSAG as follows: Structure Strategy Objectives Operations Tactics Ideology Geography Leadership and Command Additional roles Relationship to Community Communication Finances Historical/Cultural Importance Relationship with Criminality The matrix is read left to right, beginning with the aspect and including rationale, guide questions, potential data sources and the relevance this aspect has to DDR Processes. When concluding a provision categorization of the NSAG, the main conclusions from what the DDR practitioner identifies as key sections of the matrix should be included to form a descriptive categorization. For example: The armed group is a hierarchically structured cellular entity, with both political and military wings. The military and political wings have shared objectives. It behaves in a tactical rather than strategic manner targeting host and non-host communities through a variety of actions including IED/suicide attacks, terrorism and drones. It has international support for its use of drones as well as a foreign regional investor contributing conditional financial support. Conditional support relates to the targeting by the armed group of sites in a neighboring state that are of mutual interest to it and the foreign regional investor. It has a mix of predatory and defensive relationships with the host community and has institutionalized formal additional roles in the security sector, judiciary as well as through the war economy including the provision of social protection to some sections of the host community. Refined: on this descriptive categorization, the armed group is likely to be a hierarchically structured cellular organization with regional backing. It is socially and economically embedded. It has a divisive relationship with host communities and utilizes complex actions against host and non-host communities. And reduced: Armed group is a hierarchically structured entity, targeting host and non-host communities with backing from international actors. It is formally institutionalized in the territories under its control. Any provisional categorisation should be triangulated with national and regional frameworks including domestic legislation and policy. It should be triangulated with the relevant modules of the IDDRS and with an UN designation such as a Security Council designation and the UN mandate. Information may then be utilised during planning and implementing (if such a mandate exists) or supporting DDR Processes in the given country. Table 6. The Core Matrix", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a97a6ede-a17a-4862-a1e4-1d5843a3e1c1", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "This Armed Group Membership Sub-Matrix below is the first sub-matrix developed for the analysis of armed forces and groups. It is expected that more sub-matrices will be developed as learning is gathered from the review and use of this suite of analytical tools. The Sub-Matrix sheds light on the nature of membership of the armed groups under the following headings Overview. Recruitment and Management of Special Category Members. Support or Compensation Provided to the Membership. Loyalties. Motivations and Decisions. As with the Core Matrix, the Armed Group Membership Sub-Matrix is read left to right, beginning with the aspect and including rationale, guide questions, potential data sources and the relevance this aspect has to DDR processes. When concluding a provisional categorization of the armed group the main conclusions from what the DDR practitioner identifies as key sections of the typology should be included to form a descriptive categorization. The Armed Group Membership Sub-Matrix sheds light on the relationship of the armed group with its members as well as the more difficult to assess relationship of members with the armed group. This encapsulates an effort to better measure and understand the complex factors informing the motivation of armed group members as well as an effort to better rationalize why an armed group may attract and motivate different classifications of members. Essentially the sub-typology is an effort to view the armed group through the lens of membership and to begin to consider the varied biographical factors that influence members of armed groups to make the decisions they do. Consequently, the data collected through the application of the Sub-Matrix will have deep relevance for understanding the recruitment and retention strategies of the armed group. It will be relevant for tailoring DDR public information and community engagement and to designing ISMs and activities aiming to increase defections as well as the broader suite of activities under reinsertion and reintegration. Table 7. NSAG Membership Sub-Matrix", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "05778a9e-799a-4ba0-9852-588aae8b9a0e", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Peace, conflict and security analysis or conflict and security analysis for sustaining peace. Conflict analysis provides insights into the causes and consequences of violent conflict, the dynamics supporting or undermining peace efforts, and the needs and interests of diverse stakeholders. It provides a solid framework to engage with both volatile political situations where a conflict prevention lens is required and post-conflict settings where the consolidation of peace is the priority. In mission context, strategic assessment: a form of integrated assessment with the specific aim of identifying key challenges, strategies and options for United Nations engagement on peace consolidation priorities, as well as proposals for United Nations (re)configuration in a given context. Strategic Assessments should be undertaken whenever there is a need to formulate (or reformulate) the UN\u2019s strategy for engagement on peace consolidation priorities in a particular country. Several factors trigger it, including a dramatic change in the conflict or post-conflict crisis situation, and/or significant progress towards peacebuilding objectives. Strategic Assessments may also be undertaken as part of a broader United Nations transition triggered by a surge, drawdown or withdrawal of a Security Council mandated presence, in order to determine the most appropriate configuration for a follow-on United Nations presence. To this end, the Strategic Assessment is designed to: (a) Present a shared analysis of the conflict situation including its key factors and dynamics including key conflict factors, their dynamics and risks including, as appropriate, the development of scenarios, gender dimensions of the conflict and risks; (b) Identify the main priority objectives to address those key factors; (c) Identify the strategic options for the United Nations in order to respond to the situation on the ground (and potentially revisit the United Nations configuration). (d) A risk assessment for each strategic option, with references to challenges and potential risks to affected populations and United Nations partners. The IAP handbook includes templates for ToRs and report for the strategic assessments. Endnotes", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2fdfcb47-deee-4f41-96be-1d58fd8d2c3f", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Contents Summary\t\t\t\t\t\t\t\t\t\t2 1. Module scope and objectives\t\t\t\t\t\t\t3 2. Terms, definitions and abbreviations\t\t\t\t\t\t3 3. Introduction\t\t\t\t\t\t\t\t\t\t4 4. Guiding principles\t\t\t\t\t\t\t\t\t4 4.1 Unconditional release and protection of children\t\t\t\t\t4 4.2 Gender responsive and inclusive\t\t\t\t\t\t\t4 4.3 Flexible, accountable and transparent\t\t\t\t\t\t5 4.4 Nationally and locally owned\t\t\t\t\t\t\t5 5. Considerations for budgetary planning\t\t\t\t\t\t6 5.1. Harmonization with other post-conflict planning mechanisms\t\t\t6 5.2 Minimizing duplication and maximizing synergies\t\t\t\t\t6 5.3. Flexibility, Contingency and Risk Management\t\t\t\t\t6 5.4. Accountability\t\t\t\t\t\t\t\t\t7 5.5 Transition Planning\t\t\t\t\t\t\t\t7 6. Approaches to Budgeting \t\t\t\t\t\t\t\t8 6.1 Results Based Budgeting\t\t\t\t\t\t\t\t8 7. DDR Strategic Plan and Budgeting in Mission and Non-Mission Settings\t\t9 7.1 Considerations for Financing Integrated DDR in Mission Settings\t\t\t10 8. The Peacekeeping Assessed Budget of the UN\t\t\t\t\t11 8.1. Categories that may be funded by the peacekeeping assessed budget\t\t11 9. Budgeting for DDR in non-mission settings \t\t\t\t\t\t12 10. Financial management\t\t\t\t\t\t\t\t12 10.1. National Role and Coordination\t\t\t\t\t\t\t13 10.2. Administration of Funds\t\t\t\t\t\t\t\t13 10.3. Fund management mechanisms and methods\t\t\t\t\t13 Annex A: Abbreviations\t\t\t\t\t\t\t\t15 Endnotes\t\t\t\t\t\t\t\t\t\t15 3.41 DDR Budgeting and Financing", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ffe3bff1-b971-437a-90c5-bc66d9aad096", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Summary DDR is a complex endeavour, with political, military, security, humanitarian and socioeconomic dimensions. Planning any DDR intervention is also a complex process, at the heart of which is budgeting. When budgeting for a DDR process, DDR practitioners should be aware of demands of and approaches to budgeting in challenging operational contexts. The following generic considerations apply to planning the financing and budgeting of DDR: Harmonization with other post-conflict planning mechanisms; Minimizing duplications; Ensuring flexibility; Managing risk; Incorporating accountability; and Planning support for all anticipated aspects of the DDR process in question. Several sources of funding may be brought together to support DDR. Funds may include contributions from the peacekeeping assessed budget, core funding from the budgets of UN agencies, voluntary contributions from donors to a UN-managed trust fund, bilateral support from a Member State, contributions from other agencies and donors, and the host Government\u2019s own budget. A good understanding of the policies and procedures governing the deployment and management of financial support from these various sources is vital to the success of the DDR process. In accordance with Gender Responsive UN Peacekeeping Operations Policy, when DDR takes place within a peacekeeping operation, budgeting processes must allocate adequate technical, human and financial resources for gender equality, as mandated in the Security Council\u2019s resolutions on women, peace and security. DDR practitioners should adhere to current financial management good practice, particularly results-based budgeting (RBB). RBB entails aligning resources clearly and transparently behind results. When budgeting for DDR, practitioners should justify resource allocations based on a logical model of predefined objectives, expected results, outputs, inputs and performance indicators that together constitute a logical framework. Results-based budgeting is intended to be a dynamic process, providing feedback throughout the full process cycle: planning, programming, budgeting, and monitoring and evaluation. Where there is an overall DDR strategic plan, the funding strategy of the UN also should be integrated. The integrated DDR plan shall also define process and resource management arrangements, and the roles and responsibilities of key national and international stakeholders, as well as the expected impact. Budgeting for DDR in non-mission settings will involve funding for specific but potentially wide-ranging aspects of DDR. Budgeting should be tailored to the scope of the intervention and context. DDR programme budgets, including those of agencies, funds and programmes, should include an allotment of a minimum of 20 per cent of the budget to gender-related activities and female-specific interventions, including expertise and programmes to address sexual and gender-based violence. As with the operational aspects of DDR, budgeting should include considerations around exiting and handover, where relevant. Budgeting for transitions should align with operational and strategic considerations and may include phasing down, phasing out and/or phasing over.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "96e459f0-e88c-4742-8226-764b44ec34d2", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "1. Module scope and objectives This module provides UN DDR policymakers and practitioners with guidance regarding financing and budgeting for DDR in mission and non-mission contexts. It offers guidance on budgetary considerations and planning, as well as the challenges and risks of financing DDR. The guidance in this module should not supersede the specific financial management or financial safeguarding requirements of UN entities or donors. The objectives of the module are to provide DDR policymakers and practitioners with: A description of the principles and standards of financing and budgeting for DDR, and Broad guidance on the considerations that should inform financing and budgeting for DDR in various and often complex contexts.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d62c58ae-bfa1-4506-a691-6762cbe5b138", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Results-based budgeting (RBB) is the process of linking budgetary allocations to desired results. For DDR, budgeting follows the logic and planning established through the DDR strategy and process design and is measured through the DDR results framework (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on Monitoring and Evaluation of DDR). Based on the findings of the integrated assessments and situation analysis, DDR results are formulated to predict how the future situation will be different from the current situation. These results are at the heart of the DDR process Theory of Change and results framework, which are designed to guide not only the planning of the DDR process but also the budgeting. As with planning activities and logistics, they provide the internal logic for RBB and link the budget to expected results \u2013 impact, outcomes and outputs \u2013 to be achieved and the activities to be undertaken through its implementation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "73bd6fca-389c-412f-9f8a-6c8fe29f1fd3", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "3. Introduction The primary purpose of DDR is to build the conditions for sustaining peace and reconciliation at the community level. Therefore, timely, adequate, predictable and sufficient funding and effective and transparent financial management arrangements are vital to the success of DDR processes. Funding and financial management must be combined with cost-efficient and effective DDR design. DDR policymakers and practitioners should be aware of the demands of and approaches to budgeting DDR in various and often complex contexts. These include: The major DDR activities that need to be considered and their associated costs; Planning and budgeting for DDR processes in mission and non-mission settings; The standard UN financial mechanisms and frameworks used for DDR funding and financial management.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "122b898e-78f2-43c3-ad47-131dad635a12", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the planning and management of finance and budgeting for DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2e5c0b89-4f30-4942-8146-5757304dffee", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4.1 Unconditional release and protection of children DDR planning shall prioritize the immediate release of children associated with armed forces and groups, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. While child protection agencies have dedicated budgets to support the unconditional separation of children from armed groups and forces and their further support until their successful reunification with families and social reintegration, all stakeholders must appropriate adequate funding resources to identify and support the unconditional release of children and their handing over to child protection agencies in line with their role in the DDR process. Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b77eb8c0-804f-48b3-8216-9c6bbfb58a0d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4.2 Gender responsive and inclusive DDR budgets shall be gender responsive. The formulation of a gender-responsive budget is a way of ensuring that female-specific interventions will be sufficiently funded and that equal attention is paid to females and males. To encourage accountability and transparency, budgetary processes should ensure the participation of a DDR gender adviser, women\u2019s organizations and community members. In line with the Sustainable Development Goals, all project data, including budgetary allocations, shall be capable of being disaggregated by gender. In other words, costs associated with targeting women, girls, men and boys shall be clearly evident in budgets. Gender considerations shall inform the costing and financing of DDR processes. This is particularly relevant where activities directly target former members of armed forces and groups and/or specific communities and community members. See IDDRS 5.10 on Women, Gender and DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "655a60a6-431b-4eb0-98d6-96e007e37813", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.3.1 Flexible, sustainable and transparent funding arrangements Flexible, sustainable, predictable, sufficient funds with transparent funding arrangements are essential for DDR. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding and the criteria established for the use of funds, shall be flexible.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "57aeb0f3-bf1b-44e3-b282-f00b9d5d2f43", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.3.2 Accountability and transparency To build confidence and ensure legitimacy, and to justify financial and technical support by international actors, DDR shall, from its inception, be predicated on the principles of accountability and transparency. These principles apply to financing and budgetary processes as well. Like the overall planning and management of DDR, budgeting and financing shall be flexible and adaptable. They shall be conducted via a transparent mechanism that can inform independent monitoring, oversight and evaluation of DDR and its financing mechanisms.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "349477f4-d9b8-41ce-b7c7-8a7d9161cc62", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.4 Nationally and locally owned Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between Government ministries and local Government, between Government and national civil society organizations, and between Government and external partners. A national Government may make contributions to the financing of DDR from exchequer funds and consider this part of exercising national ownership. DDR planners should be aware that domestic contributions can be unreliable and difficult to predict, depending on the extent to which Government and the nation\u2019s finances are in recovery from conflict. Though financial and material resources are often located in the UN or other international partner entities and donors, some element of domestic leadership of DDR should remain with the Government and the lead national DDR institution (see IDDRS 3.30 on National Ownership and National Institutions in DDR). For example, when resources are going directly to an implementing partner, it is important that the Government participate in the oversight of the activities of that partner, both from a technical and financial perspective. If relevant, the UN and other partner agencies shall work to increase the capacity of the Government and the national DDR institutions to manage and/or participate in DDR budgeting and the project cycle of the DDR processes (see IDDRS 3.30 on National Ownership and National Institutions in DDR and IDDRS 3.40 on Logistical Support for DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "5d0a87b1-9a6c-4fde-ae63-e1ec3151d149", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "5. Considerations for budgetary planning In addition to the principles outlined above, certain generic considerations apply to planning the financing and budgeting of DDR. These are as follows.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "a87abb6c-1a77-40e3-8f92-6049b88a679a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 6, - "Paragraph": "5.1 Harmonization with other post-conflict planning mechanisms Planning and budgeting for DDR shall be harmonized with other assessment, planning and financing mechanisms that are established to manage and allocate financial resources for transition and recovery needs. Ways to accomplish this may include a single framework for managing multiple sources of funding and coordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures).", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "c8ae43d3-6b1f-4a87-8a1a-df41811adc5f", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "5.2 Minimizing duplication and maximizing synergies The UN shall avoid duplicative, high-cost administrative structures for fund management in-country, as well as unnecessary duplication in DDR activities. Tapping into multiple budget sources should not be perceived as an exercise in competition but rather in synergy.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "da0ab391-5b4d-49ef-8105-0bc9592a7916", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 6, - "Paragraph": "5.3 Flexibility, contingency and risk management Wherever possible, cost estimates should be based on thorough assessments (see IDDRS 3.11 on Integrated Assessments for DDR). In the absence of concrete information, the UN shall make the assumptions/estimates needed to carry out planning and budgeting for DDR. The planning and budgetary process shall take into account realistic worst-case scenarios and build in sufficient financial flexibility to deal with potential political and security contingencies that may affect DDR. With appropriate flexibility, this applies to both earmarked and un-earmarked funds. Flexible financing helps UN entities to fulfil their unique mandates with the right balance of regular and other resources. Budgeting for DDR should be flexible enough to allow DDR practitioners to be responsive to the changing and challenging environments in which DDR is implemented. In principle, having access to flexible financing allows DDR practitioners to plan for complex interventions and to manage risks associated with funding sources. The absence of adequate, timely and sustained funding within a workable financial framework is often a major impediment to DDR operations. This presents the following concrete challenges, particularly to DDR planners of reintegration programmes. Funding gaps. DDR processes may experience a funding gap, which can be eight to twelve months from the time contributions are pledged to the time they are received. Where there is no assessed contribution (non-mission settings), there may be an initial gap between the development of the process and when funding is received. DDR practitioners engaged in the planning and implementation of DDR processes should be particularly conscious of the dangers of creating a time and resources gap between the disarmament and demobilization phases of the programme and the reintegration phase. Transitional reinsertion assistance and/or community violence reduction (CVR) programmes may be used as stopgap measures (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.20 on Demobilization). Uncertainty regarding the peacekeeping budget. When DDR takes place within a peacekeeping operation, the mission budget can be used to support the process. However, lack of long-term predictability of funding, lack of knowledge about what can or cannot be assumed under this source of funding, lack of clarity about the budgetary process, and reluctance of Member States to fund reintegration from the peacekeeping assessed budget may limit contributions from the regular budget to DDR. Competition for resources. Sometimes sourcing funding for DDR can create competition between what are essentially cooperating agencies with shared goals in peacebuilding. Such an approach to DDR may result in poorly planned and synchronized resource mobilization activities and duplication of administrative structures, reducing effectiveness and efficiencies and negatively impacting recipient and donor confidence in DDR. This, in turn, may diminish the willingness of donors to contribute funding to DDR. External and contextual factors. Some external and contextual factors will affect the levels of funding available for DDR. During the planning stages, DDR practitioners shall accurately and realistically assess the prospects for flexible and reliable funding. Sufficient resources shall be available for all aspects of the DDR process that are to be operationalized in a given environment. If there is no guarantee of reliable funding for reintegration, then UN practitioners shall not advocate for or start the DDR process. This applies in the case of children, whose release and protection should be unconditional. Any assessment of the prospects for reliable funding should complement assessments of the conflict, security and other risks to DDR in the given context (see IDDRS 3.11 on Integrated Assessments for DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "218d2d29-263a-4053-ac52-1131590013fb", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "5.4 Accountability The UN, together with relevant bilateral or multilateral partners, shall establish rigorous oversight mechanisms (such as audit offices) at the national and international levels to ensure a high degree of accuracy in monitoring and evaluation, transparency and accountability. These tools ensure that the use of funds meets the process objectives and conforms to both the financial rules and regulations of the UN (in the case of the assessed budget) and those of donors contributing funds to the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cb963e47-e847-4e02-8b73-2c20751a3006", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "5.5 Transition planning As established in IDDRS 3.10 on Integrated Planning: Processes and Structures, the dynamic nature of DDR processes and the principle of national ownership dictate that DDR planning enable such processes to evolve towards full assumption of DDR functions by national actors. Transition planning shall at least include a real-time assessment of the outcomes of the DDR process, the extent to which ex-combatants and the security dynamics present risks to stability, the extent and effectiveness of other existing projects that will persist post-DDR, and the availability of funds. From the planning stage, budgeting should be informed by a strategic consideration of exit. Any exit strategy should emphasize sustainability of impact and be tailored to the context in which DDR is implemented. DDR policymakers and practitioners shall plan for exit and should not assume that financing for current DDR activities will be followed by extension or additional financing. Donors may approach exiting on a case-by-case basis, or via indirect/informal or formal approaches to transition that utilize specific policy or development cooperation criteria. DDR practitioners shall explicitly plan for budgetary implications of exiting DDR for which there are three generic approaches that may or may not be combined to ensure a sustainable and responsible exit: (i) phasing down, (ii) phasing out and (iii) phasing over. Phasing down approaches involve reducing programmatic engagement over time. Phasing out approaches involve reducing programmatic engagement without handing over any aspect of the intervention to any other actors or institutions. Phasing over approaches involve transitioning aspects of the intervention to other actors or institutions. DDR practitioners, particularly those managing the operationalization of DDR, should bear in mind that decisions by donors, including Member States, to withdraw may be driven by a variety of reasons, including political motivations or shifts in official development assistance strategies. Regardless, DDR policymakers and practitioners shall plan and budget for exiting. This budget should be informed by realistic time frames, careful and mutual planning, consultation and flexibility (see IDDRS 3.20 on DDR Programme Design).", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "9b66ac16-6158-4924-a28c-bc5ad7d9a489", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "6. Approaches to budgeting Funding requirements and funding sources vary considerably, depending on the DDR process, the context in which it is implemented, and the degree of integration with other peacebuilding and socioeconomic recovery programming. DDR practitioners should apply best practices of results-based budgeting in use by the UN system as appropriate.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e1d085bd-1874-40aa-ad08-3895d447ed9c", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "6.1 Results-based budgeting Organizations define RBB in different ways; however, all definitions revolve around the concept of aligning resources behind results. In any organization, RBB is shaped by the context in which that organization operates; the way in which it is structured, including the modes of engagement at various levels of work; and the degree of flexibility around the funds it receives or mobilizes. The same applies to planning and managing DDR budgets: Practitioners should justify resource allocations based on a model of predefined objectives, expected results, outputs, inputs and performance indicators that together constitute a \u2018logical framework\u2019 (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). The results expected should justify resource requirements, which are derived from, and linked to, outputs to be delivered, with a view to achieving such results. Actual performance shall be measured by predefined performance indicators contained in the DDR results framework and social change model (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.50 on Monitoring and Evaluation of DDR). Put simply, for DDR, RBB requires: (i) use of a logical framework for informed budgetary decision-making, (ii) resources justified by results and (iii) the incorporation of performance measurements into the budgetary decision-making process. Within a results-based budgeting framework, gender-specific categories shall be included, such as: Specific results related to gender adviser(s); Gender training (for programme staff, Government officials, ex-combatants, supporters and dependants) and its inputs (trained staff, adequate facilities); Gender-specific activities (e.g., gender training, peer education programming); Female-specific activities (e.g., job training for female ex-combatants, counselling for the survivors of sexual and gender-based violence) and its inputs (trained staff, adequate facilities). DDR practitioners shall define expected results at the beginning of the planning and budget cycle, before implementation. Thus, RBB for DDR will shift focus from output accounting (activities) to results-based accountability (indicators of achievements and impact). In DDR, RBB should be a dynamic process, providing feedback throughout the full process cycle: planning, programming, budgeting, and monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "1bc9fa84-3a8e-44f5-be98-b8a98cd953d4", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "7. DDR strategic plan and budgeting in mission and non-mission settings The budgeting strategy for DDR should be part of any DDR strategic plan (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). The budget should show the division of labour and the relationships among different national and local stakeholders, UN departments, agencies, funds and programmes. The planning process to develop the budgeting component of the DDR strategic plan should include the relevant national stakeholders, UN partners, implementing local and international partners (wherever possible), donors and other actors. The budgeting component shall include a definition of DDR process and resource management arrangements, and the roles and responsibilities of key national and international stakeholders (see IDDRS 3.21 on DDR Process Stakeholders). DDR programme budgets, including those of agencies, funds and programmes, should allot a minimum of 20 per cent of the budget to all gender-related activities and female-specific interventions, including expertise and programmes to address sexual and gender-based violence.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "92d2b125-e33c-4c2b-bca2-31c30c2ff8cf", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "7.1 Considerations for financing integrated DDR in mission settings When drawing up a budget, the following considerations should be taken into account: It is necessary to accurately cost process requirements during the assessment/process design phase in consultation with all key stakeholders (particularly national authorities, main donors and partners). Where relevant and possible, costing of DDR activities should be carried out within a single framework (i.e., covering all aspects of DDR that will be implemented and all phases of mission planning and process development), including a common results-based matrix with corresponding funding sources. This framework should fit in with, and be linked to, other funding frameworks (humanitarian response plans, multiyear humanitarian response plans, Recovery and Peacebuilding Assessments, etc.), pooled funds under UN Sustainable Development Cooperation Frameworks or UN Development Assistance Frameworks, and other bilateral and multilateral sources. Budgeting for funding UN DDR activities should be carried out with a clear understanding of the division between national and international implementation responsibilities, and should be closely coordinated with the development and funding of the national DDR policy and other domestic policies, including those that more broadly encompass stabilization and conflict recovery. When the Security Council establishes a mission with mandated DDR functions, components that will ensure gender equity should be adequately financed through the assessed budget of UN peace support operations and not voluntary contributions alone. Donor harmonization should be led by the national Government, possibly via the national institution with designated responsibility or relevant line ministry, provided that the Government has capacity and that appropriate oversight mechanisms compliant with international best practices exist. As far as possible, the identification of funding needs, sources and methods should be integrated with broader post-conflict recovery strategy and funding frameworks (including management and governance structures). For DDR in mission contexts, the peacekeeping assessed budget process within the UN system is important. While other funding sources are available, the peacekeeping assessed budget process requires complex planning considerations for DDR processes in the peacekeeping context as well as synchronizing with timelines that start a year before the availability of the budget. Within the UN, DDR operational funding may be used to fund all DDR processes. DDR operational funding supports reinsertion, CVR, and weapons and ammunition (WAM) activities undertaken in UN peacekeeping operations as short-term projects. Failure to align reintegration with Recovery and Peacebuilding Assessments, national and regional recovery strategies and interventions, and a realistic appraisal of conflict dynamics and socioeconomic opportunities will exacerbate inefficiencies and create parallel processes and institutions.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "46977892-1b41-400e-ad20-403f6a3aa353", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8. The peacekeeping assessed budget of the UN The peacekeeping assessed budget of the UN is an important source of funding for DDR. It is normally established for one year and covers the four major categories of expenses: Military costs (troops, military observers and equipment); Personnel costs (international and local staff members, consultants, etc.); Operational costs (logistics and limited process implementation costs) Disarmament and demobilization (including reinsertion and, by extension, CVR and WAM).", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ce5f49a6-4230-4d18-b2ae-1e1fa2937c08", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "8.1 Categories that may be funded by the peacekeeping assessed budget Guided by the Secretary-General\u2019s definitions and General Assembly resolution 59/296, the list below itemizes the categories that may be funded by the peacekeeping assessed budget. Personnel costs (international and local staff members, consultants, gender experts, etc.); Equipment for disarmament and demobilization sites; Infrastructure and logistics; Operational costs for disarmament and demobilization; Transportation (air and ground); Rations (food supply); Civilian clothing and other non-food items; Small-arms control projects; DDR training, including of national stakeholders; Reinsertion, Quick Impact Projects; Public information activities in support of the DDR process; Reinsertion support for the demobilization of combatants for up to one year after disarmament; and DDR-related tools (including CVR and WAM).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "a66fc686-56cd-4b37-bf66-e56cd88af6db", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "9. Budgeting for DDR in non-mission settings Budgeting for DDR in non-mission settings involves budgeting for specific aspects of DDR, including advisory services and DDR-related tools (which also can be used in mission settings \u2013 see IDDRS 2.10 on The UN Approach to DDR). Budgeting should be tailored to the scope of the intervention and the context in which the intervention will be deployed. Donors should be asked to allocate funds to female-specific interventions and gender training. Resource planning should be done in full recognition of the cost of implementing activities in complex conflict environments and the absorptive capacity of domestic institutions and implementing partners. This is particularly important for community-based reintegration activities, where much of the emphasis is on direct expenditure to participants and communities and the associated communications or sensitization activities. By virtue of being a long-term intervention, normally reintegration will require dedicated funding tracks that will need support over an extended period. When reintegration is part of a DDR programme, insufficient or delayed funding for reintegration may undermine all gains made during demobilization, disarmament and Reinsertion. More generally, failure to align reintegration with needs assessments, national and regional recovery strategies and interventions, and a realistic appraisal of conflict dynamics and socioeconomic opportunities will exacerbate inefficiencies and create parallel processes and institutions. As established in IDDRS 2.30 on Community Violence Reduction, in mission settings, CVR will be funded through the allocation of assessed contributions. Therefore, where appropriate, planning for CVR should ensure adequate linkages with support to the reintegration of ex-combatants and associated groups. In non-mission settings, funding for CVR will depend on the allocation of national budgets and/or voluntary contributions from donors. Therefore, in instances where CVR and support to community-based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ab02029a-78af-4499-8ef0-da2ce9b26167", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 11, - "Paragraph": "10. Financial management Where possible, DDR should develop and utilize a single structure for managing and coordinating: The receipt of funds from various funding sources and mechanisms; The allocation of funds to specific projects, activities and implementing partners; and Adequate monitoring, oversight and reporting on the use of funds. To achieve these goals, the structure should ideally include: A coordinated arrangement for the funding of DDR that would be administered by either the UN or jointly with another organization with an agreed structure for joint coordination, monitoring and evaluation; establish a direct link with integrated DDR planning and programming frameworks; All key stakeholders on DDR, while ensuring the primacy of national ownership; bring together within one framework all available sources of funding, as well as related methods (including trust funds and pass-through arrangements, for instance), in order to establish a well-coordinated and coherent system for ensuring flexible and sustainable financing of DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "47d4fe0e-8fa1-4fb9-9f6e-890768dbcfe5", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "10.1 National role and coordination The establishment of a financial and management structure for funding DDR should clearly reflect the primacy of national ownership and responsibility, the extent of direct national implementation and fund management, and the nature of UN support. In this sense, a DDR funding structure should not be exclusively oriented towards UN management and implementation, but rather be planned as an \u2018open\u2019 architecture to enable national and other international actors to meaningfully participate in the DDR process, including through provision of the Government\u2019s own resources. To ensure national participation, meaningful national ownership should be reflected in the leadership role that national stakeholders should play in the coordination mechanisms established within the overall financial and management structure. In any given context, there may be multiple peacebuilding or stabilization projects that are financed by different donors. These projects may have been designed and implemented without an integrated assessment or shared data. In such a situation, the UN and the Government and national DDR institution should work to ensure that there is: A framework for donor cooperation; Shared analytic work and preparation of next stages in the projects, where relevant; and A focus on efficiency, which may include delegating cooperation among donors.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d8292b18-869d-4286-94b7-fa0b0f5bc562", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "10.2 Administration of funds The organization responsible for the administration of funds is responsible for establishing and maintaining appropriate records and accounts to identify financial contributions and arrangements established within the funding structure, the commitments to be financed out of the contributions, and the receipt and disbursement of these funds, in accordance with specified arrangements. If multiple mechanisms are established to manage receipt of funds (such as two separate trust funds covering different funding areas or sources), multiple Administrative Agents (AAs) will be required. To avoid confusion, the same standards and criteria for allocating, monitoring and reporting funds should be adopted.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "950e8ece-c251-4b8b-93cd-f9d60b104121", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.1 Pooled funding Under this option, participating UN organizations pool funds within one UN organization, chosen jointly by the coordination committee of the DDR financial management structure, which will assume the responsibility of administering the funds. This organization, known as the AA, will support the partners authorized to manage and implement the joint process of activities identified for these funds. Process and financial accountability for UN support to the joint process will rest with the AA. This fund management option is likely to be the most effective and efficient when participating UN organizations (PUNOs) work for the same results with a common national or sub-national partner.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "64cc3cd1-87ce-4e9b-9885-edaad74c83ff", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.2 Pass-through funding Pass-through funding can be used to support a stand-alone joint programme. Under this option, two or more UN organizations develop a joint DDR programme, identify funding gaps and submit a joint programme document to donor(s). If the donor(s) and the PUNOs agree to channel the funds through one UN organization, then the pass-through modality applies. The pass-through modality has an AA, responsible for fiduciary management and financial reporting, and a Convening Agent, which is accountable for coordination of programmatic activities and narrative reporting. In such a case, the administrative agreement would be jointly selected by the DDR coordination committee. Programmatic and financial accountability should then rest with the participating organizations and (sub-)national partners that are managing their respective components of the joint process.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b9946957-4e0d-498d-98ba-b8ad9b503fed", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.3 Cost sharing Cost sharing is a procedure for receiving and managing funds for objectives, activities and results within a specific project or process managed by a single UN agency. Given the relatively higher transaction costs involved in these arrangements, cost sharing should be used exclusively for specialized projects not foreseen in the initial process document; smaller projects for implementation before the main funding mechanisms are established; funding with special arrangements; and projects that serve as a bridge to other processes and, therefore, require different management arrangements. Although funding is tied to specific projects and UN entities in this method, its use should nonetheless be governed by the DDR coordination committee and the applicable criteria, procedures and reporting requirements.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "854bcb27-4fd3-47fc-a9b7-890cf92dd571", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.4 Trust funds A trust fund is a mechanism used to receive and manage donor funds to achieve a broad aim rather than carry out a specific project. As such, it is established as a separate accounting entity with a designated trust fund manager (an AA, in this case), as well as a governance structure that decides on the allocation of received funding, and is responsible for monitoring and evaluating how funds have been used. When located within an overall funding structure, trust funds would be linked or merged with the coordination committee and its respective subsidiary organs. In general, funds channelled through a trust fund are not initially allocated to a particular project, and can therefore later be allocated to specific projects or activities working to achieve the broad aim of the process, based on the discretion of the DDR funding structure and the process of work the trust fund is supposed to support, which can be a part of the overall DDR process (e.g., covering reintegration activities).", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "23ba6f7e-4a1d-42e1-9829-c371b9ea1319", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 14, - "Paragraph": "10.3.5 Coordination of planning, monitoring and reporting To ensure that the DDR funding structure reflects the overall strategic direction and substantive content of the DDR process, all funding decisions and criteria should be based, as far as possible, on the planning, results, and monitoring and evaluation frameworks of the DDR process and action plan (see IDDRS 3.50 on Monitoring and Evaluation of DDR). For this reason, DDR planning officers should participate at all levels of the fund management structure, and the same information management systems should be used throughout. Changes to DDR strategy should be immediately reflected in the way in which the funding structure is organized and approved by the key stakeholders involved.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "79038cfa-2cd2-4f69-8d4a-da15f9e7a447", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Contents Summary\t\t\t\t\t\t\t\t\t\t3 1. Module scope and objectives\t\t\t\t\t\t\t4 2. Terms, definitions and abbreviations\t\t\t\t\t\t4 3. Introduction\t\t\t\t\t\t\t\t\t\t6 3.1 The Challenges of Monitoring and Evaluating DDR Processes\t\t\t6 4. Guiding principles\t\t\t\t\t\t\t\t\t9 4.1 People centred\t\t\t\t\t\t\t\t\t9 4.2 Gender responsive and inclusive\t\t\t\t\t\t\t9 4.3 Conflict sensitive\t\t\t\t\t\t\t\t\t9 4.4 Context specific\t\t\t\t\t\t\t\t\t10 4.5 Nationally and locally owned\t\t\t\t\t\t\t10 4.6 Regionally supported\t\t\t\t\t\t\t\t10 4.7 Well planned\t\t\t\t\t\t\t\t\t11 5. The challenges of monitoring and evaluating DDR processes\t\t\t11 6 Building M&E into the design of DDR processes\t\t\t\t\t13 7. Monitoring DDR Processes\t\t\t\t\t\t\t\t15 7.1 Results and results chains\t\t\t\t\t\t\t15 7.2 Indicators\t\t\t\t\t\t\t\t\t15 7.3 Data source\t\t\t\t\t\t\t\t\t18 7.4 Baselines for milestones and indicators\t\t\t\t\t18 7.5 Responsible authority\t\t\t\t\t\t\t\t18 7.6 Risks and assumptions\t\t\t\t\t\t\t19 7.7 Methods of verification\t\t\t\t\t\t\t19 7.8 Types of monitoring\t\t\t\t\t\t\t\t19 8. Evaluating DDR processes\t\t\t\t\t\t\t\t20 8.1 Frame and resource the evaluation: pay attention to the evaluation questions\t20 8.2 Establish decision-making structures\t\t\t\t\t\t23 8.3 Decide who will conduct the evaluation\t\t\t\t\t23 8.4 Agree on the approach and methodology\t\t\t\t\t23 8.5 Interrogate the evaluation findings\t\t\t\t\t\t23 8.6 Learn lessons, disseminate and utilize the evaluation\t\t\t\t24 9 Evaluation checklist for DDR practioners\t\t\t\t\t\t24 9.1 Steps to consider when drafting terms of reference for evaluating DDR processes\t\t\t\t\t\t\t\t\t25 Annex A: Abbreviations\t\t\t\t\t\t\t\t26 3.50 Monitoring and Evaluation of DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c7b06091-f524-4a30-96a6-d429ab2aa68b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Summary This module provides DDR practitioners with guidance on the principles and approaches to designing and implementing monitoring and evaluation (M&E) for DDR processes. Like DDR itself, monitoring of DDR processes may be conducted in complex and potentially risky environments. Consequently, M&E must be planned in a manner that takes due consideration of the complex, fluid and unstable aspects of the environment in which DDR is implemented and the potentially diverse needs of DDR stakeholders. DDR M&E is integral to successful planning, implementation and learning. Since DDR constitutes a multidimensional process that involves numerous national and international actors, having clear M&E frameworks facilitates coordination as well as complementarity across interventions. By effectively tracking progress, DDR practitioners are able to properly transition between DDR activities. M&E is central to ensuring the effectiveness and efficiency of DDR and providing accountability for all stakeholders. Appropriate investment in M&E from the planning stage onward will contribute to effective and efficient implementation, reassurance of national stakeholders and donors, among others, and the capture of evidenced-based learning to improve the design of future DDR processes. Gender-responsive M&E is necessary to assess if DDR programmes are meeting the needs of men and women and to examine the gendered impact of DDR. Often the gender dimensions of DDR are not monitored and evaluated effectively, partly because of poorly allocated resources, and partly because there is a shortage of evaluators who are aware of gender issues and have the skills to include gender in their evaluation practices. Additionally, given the high disability prevalence among DDR beneficiaries, DDR M&E must consider their specific vulnerabilities and the ability of the DDR program to harness their capacities and support their successful reintegration. DDR monitoring is an ongoing process within the project or programme cycle that utilizes the systematic collection and analysis of data on indicators that are mostly pre-defined in the relevant results framework. It aims to provide DDR practitioners and stakeholders with data and analysis on the interventions delivered by a variety of stakeholders, including Government and implementing partners. DDR evaluation is the systematic and objective assessment of DDR processes at specific points in time with the aim of determining the relevance and achievement of results as well as efficiency, effectiveness, impact, coordination, coherence and sustainability. The objective of any evaluation should be agreed among stakeholders in advance of commissioning or designing terms of reference to conduct the evaluation. Evaluations of DDR processes shall have a clear purpose, a strategic value and a learning function, and shall be utilized. DDR M&E can be any of a variety of approaches or combination of methods. However, fundamentally, M&E shall be both planned and budgeted for in the design phase of the DDR process. This is important to ensure that there are sufficient financial and other resources allocated to all aspects of M&E, including the design and collection of baseline data and dissemination of results and analysis.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "d1859a8d-4d09-46b3-baa9-ae8de5b1766b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "1. Module scope and objectives The aim of this module is to provide DDR practitioners with: An overview of M&E for DDR processes and the distinction between monitoring and evaluation; Guidance regarding the principles that shall inform the design and implementation of M&E of DDR processes; Guidance regarding implementing M&E in complex contexts, including mission and non-mission settings; Guidance regarding ensuring M&E takes into consideration gender, age and ability; Guidance on ensuring the institutional understanding and structures necessary to take full advantage of the information contained in M&E of DDR; and Guidance on managing M&E of DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "296995d9-fdb5-4882-9961-3aa049139542", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Participants are all persons who receive direct assistance through the DDR process, including ex-combatants and people associated with armed forces and groups, and others identified during negotiations of the policy framework and planning for a UN-supported DDR process. Beneficiaries are both individuals and groups who receive indirect benefits through a UN-supported DDR process. This includes communities in which DDR process participants resettle, businesses where ex-combatants work as part of the DDR programme, etc. DDR evaluation is the systematic and objective assessment at specific points in time of an ongoing or completed DDR process or policy, its design, implementation and results. The aim of DDR evaluation is to determine the relevance and fulfilment of objectives as well as efficiency, effectiveness, impact and sustainability. A DDR evaluation shall provide information that is credible and useful, enabling the incorporation of lessons learned into the decision-making process of stakeholders. Also, DDR evaluations may include the determination of the worth or significance of a process, activity or policy, via an assessment that is as systematic and objective as possible, of a planned, ongoing or completed DDR process. The type and scope of evaluation will depend on the DDR measures carried out in a given context. Evaluations may be ex ante (before the implementation phase), ex post (after completion) and during implementation (usually a periodic review or mid-term evaluation). They may be formative (during implementation) or summative (after completion). Formative evaluations are intended to inform ongoing activities and support improvement and/or adjustment to meet the defined objectives. Summative evaluations are intended to support accountability and learning. DDR monitoring is a continuous function that uses systematic collection and analysis of data on specified indicators to provide DDR practitioners and the relevant stakeholders in DDR (including conflict-affected communities) with information on the extent of progress regarding the DDR process and whether objectives are being achieved using allocated funds, and to support decision-making. Evaluability in DDR is the extent to which a DDR process can be evaluated in a reliable, credible fashion. Evaluability assessments call for the early review of a proposed activity or programme to ascertain whether its objectives are adequately defined and its results verifiable. Indicators are metrics \u2013 qualitative or quantitative \u2013 that provide information to monitor performance, measure achievements and determine accountability. Every indicator shall have an indicator baseline and an indicator target. Most DDR indicators should have a baseline defined during the planning stage (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.11 on Integrated Assessments for DDR). All indicators should have clear and realistic targets, which are the expected measurements of the indicators at a certain point in the future. Because of the unstable environment in which DDR is implemented, indicator targets may only be estimated and may need to be adjusted according to operational challenges and field dynamics. For instance, the inclusion of new armed groups in a peace process or the significant deterioration of security conditions may require the revision of expected targets. Indicators may be quantitative (numerical, units, proportions, rates of change) or qualitative (statements, words, case studies). In some cases, indicators can include images such as photographs of locations before and after construction activities. Quantitative data is usually obtained through direct observation, assessment or measurement. Typically, it is less subjective and more credible than qualitative data. Qualitative data is usually obtained through interviews and focus groups. A key to sound M&E is combining different types of data and mixing methodologies. Impact in DDR is the positive or negative, primary or secondary effects produced by a DDR process, directly or indirectly, intended or unintended. Impacts lie beyond immediate outcomes or spheres of intervention and can have wide-ranging ripple effects, including on the likelihood of conflict resumption. Implementing partners are organizations or institutions that are engaged in delivering aspects of DDR processes. They may include governmental organizations, non-governmental organizations, international non-governmental organizations, community-based organizations, or educational and training institutions, or communities. Implementing partners work in line with the institutional arrangements in DDR strategies and frameworks and in support of the larger goals and objectives of DDR as prescribed in the DDR strategy. Inputs in DDR are the financial, human and material resources used for a DDR process. They may be wide-ranging and include contributions from conflict-affected communities, particularly in community-based reintegration processes. Lessons learned in DDR are generalizations based on evaluation experiences that abstract from the specific circumstances to broader situations. Monitoring can contribute to lessons learned. Frequently, lessons learned highlight strengths or weaknesses in preparation, design and implementation that affect the performance, outcome and impact of a DDR process. They are usually shared and are meant to enrich the practice of future DDR processes. Outcome in DDR is the likely or achieved short- to medium-term effect of the output of a DDR process. It may include the degree to which DDR contributes to the objectives of broader security, development and cooperation frameworks. Examples include the percentage of ex-combatants reintegrated into civilian life, improvement in security conditions in hotspot areas, and a perceived reduction in the recruitment of at-risk youth. Outputs in DDR are the products, goods, services which result from a DDR process. Examples include the number of national DDR commission staff trained, equipped and operational, and the number of ex-combatants supported through training, psychosocial counselling and medication at the community level. Other examples include the number of DDR participants and beneficiaries disarmed, the number of community-based projects completed, and the proportion of communities that finished a participatory planning process. Theory of change in DDR is the model that establishes the intended impact and outcome of a DDR process and the steps between the DDR activities, outcomes and impacts. It documents the assumptions about how the DDR activities are expected to work and be impactful. The theory of change in a DDR process should guide the design of the evaluation of that DDR process. Theories of change may propose a results chain from activities to outcomes, and/or they may combine this with descriptions of mechanisms and contexts that with the DDR process may generate different outcomes. Results framework/logical framework is an explicit articulation (graphic display, matrix or summary) of the different levels, or chains, of results expected from a DDR process. The results specified typically comprise the impact, outcomes, intermediate outcomes and outputs that precede, and lead to, those desired longer-term objectives.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "d5aabb81-bda4-415a-8653-e4eea06cab0b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "3. Introduction DDR processes are multidimensional and complex, with political, military, security, humanitarian and socioeconomic dimensions. They involve numerous national and international actors in the various stages of planning, implementation and M&E. DDR processes require integrated planning, effective coordination and coherent, integrated M&E. To identify what information is required, DDR practitioners should consider the anticipated results, the data needed to monitor implementation and results, the information needs of DDR stakeholders, and the degree to which DDR interfaces with and influences other conflict recovery, peacebuilding and development strategies and frameworks. There shall be careful prioritization of areas for M&E to ensure the best use of available resources. DDR M&E is integral to successful planning and implementation. Having a clear M&E framework facilitates coordination as well as complementarity across interventions. It is central to ensuring the relevance, effectiveness and efficiency of DDR and providing accountability, transparency and learning for all stakeholders. Appropriate investment in M&E at the planning stage (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures) onward will contribute to effective and efficient implementation, reassurance of national stakeholders and donors, and the capture of learning to improve the design of future DDR processes. DDR M&E should be budgeted for, and adequate capacity should be factored into staffing and personnel planning (see IDDRS 3.42 on DDR Personnel and Staffing Capacities). Monitoring and evaluating DDR should support accountability in DDR processes. Assumptions and risks should be taken into account in DDR M&E. Some questions that may help guide DDR practitioners are: What information do DDR practitioners need regularly to manage the process effectively? What information do the national DDR institution and other Government ministries or bodies need to oversee the implementation of the DDR process? What information do those involved in public information and strategic communication on DDR require (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR)? What information do donors require to monitor implementation, results and the efficient use of their funds? What type of information is required to assess social changes as well as the overall impact of the DDR process? What are the needs of communities, and how can they be met? What are the needs of DDR participants and beneficiaries, and how can they be met? What information is useful to track the fulfilment of DDR provisions in peace agreements (if these exist)? M&E supports effective DDR processes by ensuring accountability, assisting DDR practitioners to better understand impact and interrogate the social change models behind a DDR process and the assumptions therein. Throughout design and implementation, DDR M&E should be aligned with the guidance in the UN Secretary-General\u2019s Data Strategy. Evaluations should follow the Organisation for Economic Co-operation and Development\u2019s Developmental Assistance Committee (DAC) criteria and the UN Evaluation Group\u2019s norms and standards, including on mainstreaming gender and human rights, as well as adopting a conflict-sensitive, do-no-harm approach. The design should be flexible, innovative and rigorous enough to support decision-making and policy advice, data access and sharing, improved data governance and collaboration, robust data protection and privacy, enhanced efficiency, greater transparency and accountability, and better services for the participants and beneficiaries of DDR. DDR M&E shall ensure that data is collected and shared in a manner that is both conflict sensitive and mindful of DDR\u2019s objectives to produce improved outcomes at the national and sub-national levels and in the communities targeted by DDR. While being conflict sensitive and respecting the privacy and security concerns of DDR participants and beneficiaries, UN partners should promote integrated M&E data sharing across the relevant UN entities and with national institutions. Every effort should be made to design M&E in a way that supports the development of M&E capacity in national DDR institutions or line ministries with responsibility for DDR. As per the 2030 Agenda for Sustainable Development, all data for M&E of DDR processes shall be capable of being comprehensively disaggregated to allow for special attention to groups that historically have been less visible in quantitative and qualitative data. These include ethnic minorities; persons with disabilities; and women and youth as well as children, boys and girls below 18 years of age associated with armed forces and groups. Consequently, all data collection and data collection frameworks including baselines, monitoring results frameworks and evaluations should have tailored data disaggregation along these lines. An integrated approach is vital to ensure that all those involved work in synergy towards the same objectives and avoid duplication of effort. Integrated DDR is framed under the sustaining peace approach and addresses the entire peace continuum, from prevention, to conflict resolution and peacekeeping, to peacebuilding and development. DDR practitioners should therefore take into consideration other peacebuilding interventions and how DDR processes integrate or correspond with these efforts. DDR processes flow from the DDR strategy and the DDR process design (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.20 on DDR Programme Design). The DDR strategy focuses on the intersection between what is needed and what can be done. The DDR process design transfers this strategic vision to achievable activities with all the associated resources, capacities and metrics. M&E of DDR processes should distinguish what we know from what we believe. It should challenge and regularly review assumptions made in conflict transformation and peacebuilding interventions, and those made about the nature of conflict in any given context. Even contexts with experience of past DDR processes must adapt to the specific demands and particularities of new peace processes. Old solutions may not be applicable to current realities, given the interests of the parties to the conflict. Most importantly, DDR processes constantly evolve in response to changes in DDR structures, funding mechanisms, political support and international involvement. All these aspects require adjustments of M&E frameworks. DDR M&E should consistently strive for quality data and analysis that directly lead to more effective ongoing DDR processes and ways of working. Learning from DDR through strong M&E strategies should be institutionalized and have real impact on the development and implementation of current and future DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "2de2a2fa-6b77-4ff4-abf5-124b8634cb55", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "4. Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "51c790ba-f389-4369-8d67-0baa1eacc9f7", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "4.1.1 Unconditional release and protection of children M&E in DDR shall yield adequate information to track the progress of the release of children associated with armed forces and groups, their handing over to child protection agencies and their progress through the DDR process until their reunification with families and reintegration into society, including the tracking of the provision of child-specific services and addressing children\u2019s needs throughout the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "67d6b3b1-2c48-4456-abd2-20822df6b6ce", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.1.2 In accordance with standards and principles of humanitarian assistance M&E of DDR processes shall be carried out in compliance with humanitarian principles. These are humanity, neutrality, impartiality and independence.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "4110ba20-f746-4ada-8fbb-afcbd5ae0b8a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.2 Gender responsive and inclusive DDR M&E shall include consideration of where gender intersects with other qualities (sexuality, gender identity, ethnicity, indigeneity, immigration status, disability) to allow for the development of tailored context-specific DDR M&E processes. Field teams for M&E shall include women (see IDDRS 5.10 on Women, Gender and DDR). M&E of DDR processes shall reflect the extent to which a gender analysis has concretely influenced the design and implementation of the process. Planning for DDR processes shall include an analysis of the gendered assumptions about the roles of DDR stakeholders (including participants and beneficiaries), and M&E should assess the accuracy, use of and outcomes from such an analysis. M&E of DDR processes shall be based on sex-, age- and disability-disaggregated data and consider gendered dimensions of the outcomes and impacts (for example, possible differentiated impacts on women and men and how the process contributes to gender equality). Gender-sensitive monitoring and evaluation is used to reveal whether a DDR process addresses the different priorities and needs of women and men, to assess if it has an impact on gender relations, and to determine the gender aspects that need to be integrated into monitoring and evaluation systems. Planning for DDR processes shall include explicit gender equality objectives and indicators and, to be effective and gender responsive, DDR M&E should measure these indicators (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures).", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "c9788ef2-da09-4cb1-87c2-f02cad8ac2ef", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.3 Conflict sensitive DDR M&E may be undertaken in insecure and risky environments where participation not just in DDR but also in M&E may present security risks to stakeholders (not just evaluators). M&E of DDR processes shall be conflict sensitive and not unnecessarily place anyone at risk. M&E of DDR processes shall consider the conflict sensitivity risks of DDR design and implementation. That is, it shall consider where and how the design and implementation of DDR processes might have created harm and interacted with other drivers of conflict and instability. Also, DDR M&E shall consider how the design and implementation of DDR processes have positively impacted the drivers, dynamics and stakeholders identified in the conflict assessment.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "01fedc30-aace-4764-ae67-c876320572d4", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.4 Context specific DDR design shall be flexible and context specific in order to address local, national, regional and global realities. M&E of DDR processes shall consider the nature of armed groups, conflict drivers, peace opportunities, gender dynamics, the presence of children associated with armed forces and groups, and community dynamics. M&E of DDR processes shall be designed such that they take local conditions and the information needs of communities into account. M&E shall be tailored not only to the type of DDR process but also to the specific context in which that intervention is being implemented. Where possible and relevant, the DDR M&E strategy shall contribute to building the capacity of domestic institutions and ensuring domestic ownership of DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "d71919ea-2bbf-4885-8e3c-cb76107d64ca", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.5 Nationally and locally owned National- and local-level actors shall be included in the design and implementation of DDR monitoring and evaluation. Key stakeholders shall be actively involved in reflecting upon and assessing the progress of their project and, in particular, the achievement of results. The process of M&E should be an opportunity to actively involve various categories of program stakeholders in the critical analysis of successes and constraints and the formulation of conclusions and lessons learned, as an alternative to a mechanical and expert-driven data analysis. Local communities shall be active participants in the M&E process \u2013 for example, through the establishment of local committees \u2013 and not only sources of information. M&E is a process of collaborative problem-solving through the production and use of knowledge, and through corrective action based on shared decision-making involving all stakeholders; therefore, the focus shall be on building stakeholders\u2019 capacity for analysis and problem-solving. A process aimed at implementing any recommended corrective actions shall be put in place. A participatory process shall entail the development of techniques designed to be used by community members and other local-level stakeholders as part of an M&E activity, such as visual self-evaluation tools, testimonials, photographing the evidence, etc. In contexts where national capacity is weak, Government shall be supported to develop M&E capacity for DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f1ead07e-9ca8-40a8-bde8-b57637cfe4f2", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.6 Regionally supported Where appropriate, DDR practitioners shall engage regional stakeholders, including neighbouring countries and regional organizations, in M&E of DDR (see IDDRS 5.40 on Cross-Border Population Movements). Regional results frameworks shall be developed in close coordination with respective authorities, agencies or the regional entities.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "e33e3024-9b4b-4640-8b7b-291a3f25271b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "4.7.1 Safety and security Given that DDR is aimed at groups that are a security risk and is implemented in fragile security environments, both risks and operational security and safety protocols should be decided on before the design, planning and implementation of activities, including monitoring and evaluation activities. DDR M&E should include the security and safety needs of UN and partner agency personnel involved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Furthermore, M&E of DDR processes shall maintain an awareness of the impact of instability and security dynamics on the performance of DDR processes and the sustainability of results. This should inform ex ante evaluative examinations of DDR design.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "9e2edc35-420b-4182-a039-d544f75506bf", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "4.7.2 Evaluability assessment An evaluability assessment ascertains the extent to which an activity or project can be evaluated in a reliable and credible fashion. An evaluability assessment informs the time of an evaluation and improves the prospects for an evaluation producing useful results. The assessment may be conducted during the planning stage (of the theory of change), or during the creation of the results framework. Data availability and the views of stakeholders should be taken into account. DDR practitioners should plan for evaluability assessments and identify the criteria to be investigated \u2013 for example, availability of data and challenges in causal attribution. DDR practitioners can then make informed decisions as to the range of evaluation options that may be utilized for a DDR process.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c730e311-2220-4fcd-b662-1cd89cf23a59", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "4.7.3 Public information and community sensitization Subject to the appropriate controls (including around security and sensitive data), information and analysis from DDR M&E shall be disseminated externally to a wider audience (including conflict-affected communities) and with appropriate contextualization of the information contained in the analysis. A dissemination and utilization strategy should be planned in advance of conducting an evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ca621c50-f57a-48e1-862f-755bd4627c4a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "5. The challenges of monitoring and evaluating DDR processes M&E in DDR faces particular challenges: A lack of robust evidence about what actually works in DDR and the results chain between inputs, activities, outputs and outcomes. This is a common challenge for interventions in conflict, stabilization and peacebuilding, not just DDR. In DDR it may be the case that some support is delivered on a humanitarian basis, including support to children associated with armed forces and groups. Though this support may fall outside the results framework or theory of change being utilized to manage DDR, it should not prevent its delivery. Limitations in data availability that arise in part from insecurity, the sensitive nature of the data, and the operational challenges of both mission and non-mission contexts. Consequently, it can be difficult to establish accurate baselines, collect data to verify progress and create realistic targets. Emerging areas of new learning that eventually will need to be incorporated into regular day-to-day monitoring, evaluation and learning. Currently in DDR, these areas include how to better understand armed forces and groups, the motivations and decisions of their participants, and how both of these areas of concern impact the effectiveness of DDR. DDR practitioners should be aware of the limitations in their understanding and emerging approaches to help address those limitations. Challenges collecting data on illicit weapons and ammunition flows. A weapons survey is the collection and analysis of quantitative and qualitative data about weapons and ammunition, which is conducted within a specific geographical area and used to provide evidence upon which to design tailored, safe and effective arms control interventions. (For further information, see IDDRS 4.10 on Disarmament.) There are risks inherent in conducting weapons surveys. Survey staff (researchers) and survey subjects (interviewees) can be exposed to danger while conducting, or as a consequence of participating in, surveys. Respondents can also feel afraid when asked questions on sensitive subjects and, as a result, can provide inaccurate information. Survey planners and M&E staff shall take action to reduce such risks to an acceptable level and to mitigate challenges to acquiring accurate information. Data management practices and policies of UN entities. UN entities apply divergent approaches to data collection and management, including for M&E purposes. Consequently, there is a high risk that data and analysis can become siloed within and between UN entities working in DDR. A data sharing agreement and/or memorandum of understanding may be required to facilitate the sharing of information among actors in line with data protection policies. The complexity, fluidity and uncertainty of the contexts in which DDR is designed and implemented. This can lead to challenges verifying causal chains, as conflict actors and allegiances can shift during DDR, making assumptions in DDR theories of change highly challenging. New armed groups may decide to join the peace process, increasing the demand for interventions while funding remains unaltered. In addition to political crisis and the deterioration of security conditions, DDR processes can be affected by sudden budget reductions. Security and safety risks of personnel, including external personnel. These risks can have cost implications for conducting M&E, and remote approaches may be required. Changes in conflict dynamics may require the reallocation of resources and investment in security mechanisms to ensure safety. The highly politicized nature of some DDR stakeholders, the impact of hidden political economies, and inter-group and intra-group dynamics can have a significant impact on the data collection and analysis required for monitoring and evaluation. The sustainability of outcomes from DDR processes ultimately depends on broader socioeconomic development, which is beyond the capacity and lifespan of DDR. While DDR processes contribute to security and stability by creating tailored incentives, DDR is not meant to address structural and societal problems. DDR involves a wide variety of stakeholders. Some stakeholders or implementing partners in DDR may be unfamiliar with robust M&E or may have different (perhaps conflicting) expectations of and methodologies to measure results. When possible, M&E of DDR should be built on consensus regarding what to measure and how. DDR interfaces with multiple systems, including security systems, which themselves are highly complex, with differing parts and functions. DDR M&E should be designed and implemented based on the best understanding possible of the systems with which DDR interacts and how those systems may influence results and implementation. Monitoring and evaluating where specific needs groups are targeted (for example, women; children, including children associated with armed forces and groups; youth; and persons with disabilities or chronic illnesses) may present additional safeguarding and ethical challenges, particularly where there are multiple intersecting vulnerabilities, including gendered vulnerabilities. At all times, a rights-based approach to conducting research with vulnerable groups shall be applied. All M&E shall be conducted in full compliance with ethical standards for engaging these populations.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "56e32dd9-1334-4ea4-9fdd-dc9bdb3eb400", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "6. Building M&E into the design of DDR processes M&E shall be an integral part of all phases of the design and implementation of the DDR process. This means that DDR practitioners shall take due consideration of M&E from the planning and assessment stages (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.11 on Integrated Assessments for DDR) through implementation and transition. This approach to M&E should be institutionalized across UN entities and reflected in standardized M&E procedures, management information systems, feedback loops and responsiveness to findings. Following are typical institutional steps for M&E that can guide the sequencing of the various aspects of DDR monitoring and evaluation. During planning and assessment stages: Include an assessment of partner capacity and needs in M&E (this includes Government); Include a review of M&E capacity, including gender-responsive M&E capacity, and needs of implementing and resource partners. During the design stage: Ensure the DDR process is supported by a results framework that has been developed inclusively (including through the participation of Government) and with high standards, as this is the starting point of quality monitoring and evaluation; Develop gender-responsive and disability-inclusive M&E strategies; Design monitoring systems (include, if necessary, management information systems); Begin M&E capacity-building if required and feasible. During implementation: Undertake an evaluability assessment; Gather baseline data disaggregated by sex and age; Collect and review monitoring data disaggregated by sex and age; Conduct quarterly and annual reviews of overall progress towards objectives and other issues; Follow up baseline studies with subsequent longitudinal studies where relevant; Conduct mid-term process review; Conduct final evaluation(s). During transition/exit: Assess efficacy, effectiveness and impact of transition strategy and implementation; Follow up on final evaluation(s) and respond where necessary; Distribute learnings; Apply lessons to current and future DDR processes.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "823e1c2b-a26a-4277-b384-2778ed5cd4f0", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "7. Monitoring DDR processes DDR monitoring is a continuous function that uses systematic collection and analysis of data on specified indicators to provide DDR practitioners and the relevant stakeholders in DDR (including conflict-affected communities) with information on the progress of the DDR process, on whether objectives are being achieved using allocated funds, and to support decision-making. It can include activities delivered by the UN as well as overall assessment of interventions delivered by a variety of stakeholders, including Government and implementing partners. Monitoring involves routine data collection around indicators that reflect the theory of change of the DDR process. Normally, indicators and data collection around indicators are collated in the results framework for the DDR process (also known as the logical model or logical framework). A results framework should include the following: A results chain; Indicators; Data sources and collection methods; Baselines, milestones and targets; Responsible authority; and Risks and assumptions.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e443ba35-be91-4cfb-abf8-cae11935e882", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "7.1 Results and results chains The results chain can be conceived of as the map of the solution a DDR process is applying to a series of problems, ranging from such issues as weapons held by armed groups to lack of economic, social and political reintegration of former members of armed forces and groups. The results chain links the intended outcomes and impact (results) of a DDR process to its activities and outputs (proposed solutions to the problem) as outlined in the theory of change of the particular DDR process. The results chain shall identify the steps that will indicate progress towards the intended results of the DDR process and present these as a results framework. In DDR, as in other interventions in complex contexts, the pathway from identifying the problem to achieving the solution can be long and complex and involve interrelated DDR activities and other peacebuilding interventions. In the context of the results framework, the solution is constituted by the DDR process\u2019s inputs, activities and outputs. Results can be phrased as: Change at the level of impact: the positive or negative primary or secondary long-term effects to which a DDR process will contribute either directly or indirectly, intended or unintended. DDR practitioners and policymakers shall understand that in DDR, a single actor will not on its own achieve the intended change at impact level. The change is something to which DDR contributes. Hence, it is important to understand the other interventions in the stabilization and peacebuilding context that are implemented alongside DDR. Change at the level of outcome: the likely or intended short-term and medium-term effects of the outputs of a DDR process. Outcomes should be clear and simple and should be achievable in the lifetime of the DDR process. Due to the complexity of the context in which DDR processes are implemented, outcome-level changes may be sequential, with one outcome flowing from (and dependent upon) the previous outcome. Change at the level of output: outputs are the tangible products, goods or services that result from the activities of a DDR process, such as increased capacity or increased skills. At the first level, the solution in the results chain is driven by the outputs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8aeea063-378a-4b46-923c-822dd4e69d3e", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "7.2 Indicators Indicators in a DDR process results framework describe how a particular result will be measured. Essentially, indicators are pieces of data that, when recorded, give DDR practitioners guidance on the progress towards outputs, outcome and impact. Indicators can be quantitative, qualitative, intangible and/or subjective. DDR indicators with indicator baselines and targets need to be defined at the planning stage with the participation of all key stakeholders, and should be included in the DDR project or programme document. DDR requires indicators at all result levels. There are differences between input and activity indicators (measuring inputs and activities), performance indicators (measuring outputs and outcomes) and impact indicators (measuring impact). To be useful for performance monitoring, indicators need to fulfil certain minimum standards. A commonly used set of criteria is \u2018SMART\u2019: specific, measurable, attainable, relevant and time bound. SMART indicators can capture both quantity (for example, the percentage of former members of armed forces and groups who are minors) as well as a certain quality (for example, the level of satisfaction with the reinsertion package). An indicator should be direct and closely linked to the result it attempts to measure. For example, if the output is \u201810,000 former members of armed groups provided with reintegration assistance\u2019, a direct indicator would be \u2018the number of former armed group members provided with reintegration assistance\u2019. Where direct data cannot be reliably collected, an indirect/proxy indicator can be used. This is typically necessary if a result is an abstract concept. For example, a DDR programme can measure impact (\u2018security situation improved\u2019) by using proxy indicators (violence, confiscated ammunition, confiscated weapons). When relevant, the indicators shall be sex disaggregated. Specific indicators to measure how the process fulfils its commitments on gender equality and women, peace and security should be utilized. Table 1 summarizes indicators for DDR programmes transitional weapons and ammunition management (WAM) and community violence reduction (CVR). These indicators are illustrative and may be applied depending on the design of the DDR process (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). TABLE 1: DDR PROCESS MONITORING INDICATORS", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "72d1d504-5fb2-4e44-ba38-703074290930", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.3 Data source When developing indicators for a DDR process results framework, DDR practitioners shall ensure that there is a viable and reliable source for the indicator. At the level of output, data should be easily available. For outcomes and impact tracking, indicators can be more dependent on the feasibility of collecting data from sources external to the DDR process. Data can be primary (collected by the DDR team, implementing partners or consultants) or secondary (collected from open source, geographic information systems and other platforms). UN databases and those utilized by implementing partners can provide data for DDR monitoring and evaluation. DDR practitioners should be aware that these databases may not have interoperability, and data may not be routinely shared or integrated.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "79ba9a61-0939-4315-9eca-e7a8cc928df5", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.4 Baselines for milestones and indicators Baselines should be selected and set for each milestone and each indicator. The baseline should be established during or soon after the design phase of the DDR intervention. Revising baselines during implementation can negatively impact the results chain. By design, the baseline is the starting point, and the monitoring of DDR should be flexible and adaptive to the environment and the impact this has on implementation of DDR processes.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e1f090e9-f559-4fd2-bafc-d23522d50514", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.5 Responsible authority Results frameworks for monitoring DDR processes should be updated regularly, at least quarterly, by a DDR core team member with responsibility for monitoring and evaluation. Given the highly complex and changeable contexts in which DDR is implemented, the results framework may need more regular updating and modification than is the case in other interventions.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3c48e679-e430-48d9-b554-7314996ea01c", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.6 Risks and assumptions The results framework should record risks and assumptions relevant to the DDR process. Arguably, the interrogation of assumptions is the aspect of DDR processes that receives the least attention in monitoring and evaluation. For each output and outcome, assumptions that relate to external factors should be noted. These assumptions may be environmental, political, security-related, economic or relevant to some other dimension. They need to be reviewed and updated on a regular basis. Similarly, risk mitigation measures should be noted. Risks and risk drivers are monitored throughout implementation, and regular reflections by DDR practitioners contribute to reviewing existing risks and exploring risks (and threats) that are likely to emerge. UN entities track risks in different ways, but most utilize some form of risk register or risk log that should be part of the routine monitoring of the DDR process (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). Risk monitoring should include established feedback mechanisms that are triggered when unanticipated risks emerge or the threat level of existing risks rises.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f2bf699a-877b-4b1d-a16d-5797dfd3d557", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.7 Methods of verification Means of verification/data sources are the mechanisms, institutions and/or instruments that generate the data required by the indicators used for M&E. Through identified means of verification, practitioners can continuously identify programme and operational bottlenecks that impede progress, as well as opportunities to accelerate the achievement of results. In DDR, a core management information system may be a source of verification for indicators on the output level. For indicators on security, the means of verification might be the monthly hospital reports or police reports on homicide rates. Other means would include administrative data from implementing partners and national surveys.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "28070004-106f-42ae-a1d3-5e614a622162", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 17, - "Paragraph": "7.8. Types of monitoring Monitoring can include performance monitoring and monitoring context. Performance monitoring is the most conventional form of monitoring and focuses on aspects of the DDR process that are more or less within the control of the agency or its implementing partners. These include monitoring outputs for quality, quantity and timeliness as well as overall progress towards the achievement of outcomes or objectives. Essentially, this is the monitoring of implementation of the DDR process. Context monitoring focuses on the broad conflict, security, political and other factors over which the agency and/or its implementing partners have no control but that are relevant to the implementation and performance of the DDR process. This type of monitoring may include information about other non-DDR programmes or projects being implemented, and macroeconomic, security, social and political conditions in the DDR context.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dd2a48b2-3937-46c9-a335-0441ffc20c94", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8. Evaluating DDR processes Evaluating DDR processes is the systematic and objective assessment of the process at prescribed points in its design and implementation, with the aim of determining the relevance and achievement of results as well as efficiency, effectiveness, impact, coordination, coherence and sustainability. The objective of any evaluation should be agreed among stakeholders in advance of commissioning or designing terms of reference for the review. Evaluation of DDR processes should be independent, rigorous and transparent. The four key functions of evaluating DDR processes are: To provide accountability for whether the DDR process has achieved results and to what extent this has been done through the efficient use of resources; To provide broader learning about the why, how, who, where and what of the DDR process so that this information can inform the revision of the current intervention and provide input into future interventions and the work of other DDR stakeholders; To highlight the strengths and weaknesses of the DDR process; To recommend restructuring of the DDR process based on a sound analysis of implementation, progress towards achieving objectives and reacting to (and anticipating) the shifting dynamics of the implementation environment. Evaluation shall be planned and budgeted for in the design phase of the DDR process (see IDDRS 3.41 on DDR Budgeting and Financing) to ensure that there is a financial allocation for it. This type of planning and budgeting informs the design and collection of baseline data (by asking what data should be collected \u2018up front\u2019). It ensures the evaluation will be utilized and learned from and will feed back into current and future DDR interventions. Evaluations of DDR processes shall have a clear purpose, a strategic value and a learning function and shall be utilized. The following are some main steps in conceptualizing and managing the evaluation of DDR processes. FIGURE 1: MAIN STEPS IN CONCEPTUALIZING AND MANAGING THE EVALUATION OF DDR PROCESSES", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ad100177-9dde-4233-ba57-1a8ca58ebb34", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8.1 Frame and resource the evaluation: pay attention to the evaluation questions Framing the evaluation requires DDR practitioners to apply the standard DAC criteria (relevance, efficiency, effectiveness, impact, sustainably, coherence and coordination) and also to identify: The purpose. For example, is the purpose of the evaluation to allow for mid-implementation course correction, or is it to increase knowledge of the impact of the DDR process and how this can inform other interventions? The stakeholders. The stakeholders are not limited to the UN but include the actors in the DDR process as well as DDR participants and beneficiaries. DDR practitioners should identify stakeholders that can feed into the evaluation process, such as key experts and independent reviewers. The time frame. The timing of an evaluation is dependent on the context, the purpose of the evaluation and the everchanging nature of the evaluability of the DDR process. DDR practitioners should synchronize the evaluation with the programme/project cycle of the DDR process to ensure that it is timely and that there is an opportunity for the findings to feed into the process or into future interventions. What to evaluate. This is driven by the purpose of the evaluation, and it will influence the approach used. For example, if the \u2018what\u2019 is the impact on the lives of DDR participants, then the approach will be an impact assessment that will likely combine quantitative and qualitative methods to measure changes in the social, economic and political aspects of their lives (often in comparison to wider communities and/or control groups). For whom or what entities is the evaluation conducted? The audience of an evaluation may be wider than but includes the primary users of that same evaluation. The primary users are the key target group for the evaluation. They are those individuals or groups who are affected by the outcome of the evaluation and are able to act on its analysis and findings. They should be clearly identified at the outset, clearly communicated to the evaluator and remain in regular contact with the evaluator so that the evaluation addresses their needs and has the best chance of being utilized. As discussed below, there are many approaches and methods to evaluation. Some core types of evaluation include impact evaluation, implementation evaluation, efficiency evaluation, most significant change evaluation, thematic evaluation, and outcome mapping. Aspects of other approaches may be incorporated. These include experimental, quasi-experimental, random control tests, qualitative comparative analysis, participatory evaluation, systems mapping and network analysis, including via new data analytics and \u2018new\u2019 data. Impact evaluation focuses on the longer-term outcomes of the DDR process. Normally, it combines quantitative, qualitative and desk-based methods, such as household surveys, key information interviews, focus groups and literature reviews to measure the impact of an intervention. It may be repeated over time to establish comparative and longitudinal perspectives on the intended and unintended impacts of the DDR process. Implementation evaluation focuses on how the DDR process has been or is being delivered. Normally, it applies standardized criteria (such as the revised DAC criteria) to evaluate implementation. It may use mixed methods, such as quantitative data analysis, qualitative consultations with key stakeholders, and efficiency analysis of budgets and financial management. Efficiency analysis (benefit-cost and cost effectiveness) is an economic approach to evaluation that will compare the relative costs and outcomes of the DDR process being evaluated. The primary objective of an efficiency analysis is to determine whether the benefits of an intervention outweigh the costs. For DDR, this may be a complex process given the challenge of establishing a benefit-cost ratio across the participants and other beneficiary populations and finding comparative DDR interventions in other locations with which to compare costs. Furthermore, the impacts of DDR include intangible impacts such as empowerment, peace and inclusion, which are highly challenging to monetarily assess. Most significant change is a core participatory tool to evaluation that utilizes testimony from DDR participants to identify stories of change that can then be shared more widely with stakeholders, including implementers. This approach collects stories (which may be oral, written or communicated through images or performance). As with other approaches, technology can be used to analyse written and spoken stories to help identity key issues, trends and topics of importance. Thematic analysis is based on a specific theme, such as region, sector, gender, security or livelihoods. It utilizes evaluation criteria specifically established for the theme. This may include analysis that extracts trends and problems common to a particular issue or compares projects and categorizes them to extract common features and good practices. Outcome mapping is a common participatory tool for evaluation and programme design. It focuses on the outcomes for individuals, groups or organizations with which the DDR process has direct contact. It is a qualitative approach centred on collecting and analysing testimony from key stakeholders.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "27bcb9ba-8fc2-4268-ac38-4649450d4d3d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.2 Establish decision-making structures DDR practitioners shall establish the appropriate decision-making structures for the evaluation. This could be accomplished by convening and utilizing an advisory group of internal and/or external institutional stakeholders and experts. It may also include drawing an advisory group from beneficiary communities.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "c2cb1d2f-99aa-4992-817d-e1da11543abd", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.3 Decide who will conduct the evaluation In DDR, evaluations are normally external and independent. They can include hybrid models where an external, independent expert or team works in close cooperation with internal staff. When deciding the \u2018who\u2019 of DDR evaluation, DDR practitioners should be guided by the purpose, the approach and the methodology.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b903e98e-fa5e-45da-b3fa-02fd227a3905", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.4 Agree on the approach and methodology There is an extensive body of approaches and methods for evaluation, many of which will be applicable to DDR processes. DDR practitioners should access internal expertise, the expertise of partners to DDR and the expertise of consultants when deciding on the approach and methodology for evaluating a DDR process. First and foremost, all evaluations of DDR processes shall adhere to ethical and quality standards (particularly data protection) and be gender and conflict sensitive. Evaluation methods are the specific tools and approaches for collecting and analysing data. In some cases, a design may be closely linked with a set of methods. Generally, evaluation methodologies for DDR processes are derived from qualitative, quantitative and mixed method techniques. DDR practitioners should remain open to innovative evaluation methodologies, including the use of virtual spaces, virtual tools to analyse dynamics such as perceptions and conflict networks, participant observation, big data and other approaches, methods and tools.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "92333268-9e4e-42bc-83b9-7636aef56bb7", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "8.5 Interrogate the evaluation findings DDR practitioners shall duly examine and interrogate the findings of evaluations of DDR processes. This includes engaging with the evaluators and the evaluation process to check and quality control data, and, where relevant, running their own analysis of quantitative datasets (such as regression, sequential analysis, scatterplot and correlation). DDR practitioners should ensure that, where relevant, the evaluation includes an analysis of counterfactuals, causal links (including those already identified in the social change model) and possible alternative explanations (and alternative contributory factors) for the results that have been identified.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2b65019f-aaa4-444f-bbb3-97f727c7bb3d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "8.6 Learn lessons, disseminate and utilize the evaluation Lessons learned are generalizations based on evaluation experiences that abstract from the specific circumstances to broader situations. Frequently, lessons highlight strengths or weaknesses in preparation, design and implementation that affect an intervention\u2019s performance, outcome and impact. Learning shall provide a constructive lens through which DDR practitioners can view existing or future processes to ensure that DDR adapts, evolves and improves over time. Subject to the appropriate controls (such as those around data sensitivity), evaluations should be disseminated and, where relevant, their analysis and lessons should be synthesized with other M&E outputs. Evaluations and, in particular, lessons learned should be acted upon. If DDR practitioners do not explore and apply lessons learned, the evaluation has little if any value. Evaluation (and monitoring) should contribute to better DDR processes, greater learning, improved accountability and greater impact for participants and beneficiaries. Evaluation (and monitoring) should enable DDR practitioners to devise and implement strategies and decisions in the highly complex and often insecure contexts in which DDR is implemented. Finally, evaluation (and monitoring) of DDR should improve the capacity of national Governments and domestic stakeholders to evaluate and monitor not just DDR but other peacebuilding interventions sustainably and to the highest standard.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "fa7abcb2-f79b-4268-a14c-fc7dfa086fc0", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "9. Evaluation checklist for DDR practitioners Who controls the process of commissioning and sharing the evaluation? Can local stakeholders (including field-level international programme staff) input into its design and management? Are the primary purpose and scope (programme/sector/system/theme) of the evaluation clear, and has it been agreed by all key stakeholders? Is the methodology appropriate, and has it been agreed with the evaluator(s)? Do the evaluator(s) have all of the necessary characteristics, such as knowledge of M&E, knowledge of DDR processes, gender expertise and knowledge of the local context? Do they have or need security clearance? Has there been an assessment of the risks to physical security both for evaluators and the individuals and communities that are contacted? If risks have been identified, is there a strategy for risk management/avoidance? Is the evaluation conflict sensitive, i.e., is there any risk that the evaluation could negatively affect conflict dynamics? Is the evaluation gender sensitive? Have gender experts been consulted? Who should respond to the evaluation findings, and how?", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d0ec47b8-bfcc-4e45-8e14-d0b5c7f29314", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "9.1 Steps to consider when drafting terms of reference for evaluation of DDR processes Define the purpose and use of the evaluation. Is the purpose learning or accountability? Will the evaluation be used to decide on future funding? To inform future support? To provide input to new strategy? Describe the evaluation object and scope. What are the specific objectives of the evaluation? To document achievements? To assess some or all of the activity\u2019s objectives? Will the evaluation look at implementation strategies and processes? Will it have a participatory focus? Will it look at the programme\u2019s underlying assumptions and theory of change? Which DAC evaluation criteria will be used (impact, relevance, sustainability, efficiency or effectiveness)? Describe the rationale for the evaluation. Why conduct this evaluation at this point in time? What are the longevity, amount of funding and risks tied to the intervention? Are there any specific events that have triggered the evaluation (change of donors, change in the conflict context, etc.)? Describe the scope, time frame, objectives and nature of the activity to be evaluated. Specify issues to be covered, budget and funds spent, the time period to be evaluated, types of activities, geographical coverage and target groups, as well as other elements of the conflict prevention and peacebuilding intervention addressed, such as contextual issues. Provide directions for the approaches to be used. What method will be used in the evaluation? How should the evaluation be conducted, via what process and steps, etc.? Will there be an inception phase? What will the level of stakeholder involvement in the evaluation process be? Logistical and safety concerns. Address ethical behaviour in conflict environments and provide guidance on safety and logistics. Principles. What standards and principles are to be followed? Refer the team to any relevant policy documents or internal UN agency agreements. Management arrangements, quality control and reporting. Who will be in charge of each task and oversight? To whom will the evaluation team report? Is there a need to establish a steering mechanism for the evaluation? Who will be responsible for ensuring information sharing among team members? Who will be involved in drawing and assessing conclusions? What reports will be generated? Will they be public or confidential? Will they be published or placed on the internet? Will the reports and conclusions be checked? What quality control systems will be used? Team requirements (including team make-up). Who should do the evaluation, and what characteristics do they need to have? What is the desired size and composition of the team? What time commitment is involved in terms of person-hours? What types of individuals are needed for this particular evaluation in this particular context? Budget and schedule. How will the evaluation be funded? Have there been arrangements made for security costs or other additional costs associated with working in a conflict environment? Are funds available for conflict analysis? (Bids may also be accepted and then compared to establish the appropriate funding needed.) When will the evaluation be conducted? What criteria will be applied to reports before funding is disbursed?", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b272143c-2830-4eed-940d-257dd696c3ce", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 23, - "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction DAC\tDevelopmental Assistance Committee M&E\tmonitoring and evaluation SMART\tspecific, measurable, attainable, relevant and time bound WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8e2e6e2c-84e2-4c71-a3c9-490914498db6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Summary Disarmament is the act of reducing or eliminating access to weapons. It is usually regarded as the first step in a DDR programme. This voluntary handover of weapons, ammunition and explosives is a highly symbolic act in sealing the end of armed conflict, and in concluding an individual\u2019s active role as a combatant. Disarmament is also essential to developing and maintaining a secure environment in which demobilization and reintegration can take place and can play an important role in crime prevention. Disarmament operations are increasingly implemented in contexts characterized by acute armed violence, complex and varied armed forces and groups, and the prevalence of a wide range of weaponry and explosives. This module provides the guidance necessary to effectively plan and implement disarmament operations within DDR programmes and to ensure that these operations contribute to the establishment of an environment conducive to inclusive political transition and sustainable peace. The disarmament component of a DDR programme is usually broken down into four main phases: (1) operational planning, (2) weapons collection operations, (3) stockpile management, and (4) disposal of collected materiel. This module provides technical and programmatic guidance for each phase to ensure that activities are evidence-based, coherent, effective, gender-responsive and as safe as possible. The handling of weapons, ammunition and explosives comes with significant risks. Therefore, the guidance provided within this module is based on the Modular Small-Arms Control Implementation Compendium (MOSAIC) and the International Ammunition Technical Guidelines (IATG). Additional documents containing norms, standards and guidelines relevant to this module can be found in Annex B. Disarmament operations must take the regional and sub-regional context into consideration, as well as applicable legal frameworks. All disarmament operations must also be designed and implemented in an inclusive and gender responsive manner. Disarmament carried out within a DDR programme is only one aspect of broader DDR arms control activities and of the national arms control management system (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR programmes should therefore be designed to reinforce security nationwide and be planned in coordination with wider peacebuilding and recovery efforts.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "5c701de3-76ac-4789-8423-fdacef671a2e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "1. Module scope and objectives DDR processes include two main arms control components: (a) disarmament as part of a DDR programme and (b) transitional weapons and ammunition management (WAM). This module provides DDR practitioners with practical standards for the planning and implementation of the disarmament component of a DDR programme in contexts where the preconditions for such programmes are present. These preconditions include a negotiated ceasefire and/or peace agreement, sufficient trust in the peace process, willingness of the parties to the armed conflict to engage in DDR and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). Transitional WAM in support of DDR processes is covered in IDDRS 4.11 on Transitional Weapons and Ammunition Management. The linkages between disarmament as part of a DDR programme and Security Sector Reform are covered in IDDRS 6.10 on DDR and Security Sector Reform. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. Definitions of technical terms related to weapons and ammunition are taken from MOSAIC and the IATG. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. In the context of DDR, disarmament refers to the collection, documentation, control and disposal of small arms, ammunition, explosives and light and heavy weapons of combatants and often also of the civilian population. Disarmament also includes the development of responsible arms management programmes. The term \u2018disarmament\u2019 can be sensitive. It can carry connotations of surrender or of having weapons forcibly removed by a more powerful actor. Depending on the contextual realities and sensitivities, as well as the provisions of the peace agreement, alternative terms, such as \u2018laying down arms\u2019 or \u2018putting weapons beyond use\u2019 or \u2018weapons control\u2019, may be employed. Ammunition: A complete device (e.g., missile, shell, mine, demolition store) charged with explosives, propellants, pyrotechnics, initiating composition, or nuclear, biological or chemical material for use in connection with offence or defence, or training, or non-operational purposes, including those parts of weapons systems containing explosives. Deactivated weapon: A weapon that has been rendered incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deactivated by a competent State authority. Note 1: Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable. This includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Demilitarization: The complete range of processes that render weapons, ammunition and explosives unfit for their originally intended purpose. Demilitarization not only involves the final destruction process, but also includes all of the other transport, storage, accounting and pre-processing operations that are equally critical to achieving the final result. Destruction: The rendering as permanently inoperable weapons, their parts, components or ammunition. Disposal: The removal of arms, ammunition and explosives from a stockpile by the utilization of a variety of methods (that may not necessarily involve destruction). Environmental concerns should be considered when selecting which method to use. There are six traditional methods of disposal used by armed forces around the world: (1) sale, (2) gift, (3) use for training, (4) deep sea dumping, (5) land fill, and (6) destruction or demilitarization. Diversion: The movement \u2013 physical, administrative or otherwise \u2013 of a weapon and/or its parts, components or ammunition from the legal to the illicit realm. Explosive: A substance or mixture of substances that, under external influences, is capable of rapidly releasing energy in the form of gases and heat, without undergoing a nuclear chain reaction. Explosive ordnance disposal (EOD): The detection, identification, evaluation, rendering safe, recovery and final disposal of unexploded explosive ordnance. Note 1: It may also include the rendering safe and/or disposal of explosive ordnance that has become hazardous through damage or deterioration, when such tasks are beyond the capabilities of personnel normally assigned responsibility for routine disposal. Note 2: The presence of ammunition and explosives during disarmament operations inevitably requires some degree of EOD response. The level of EOD response will be dictated by the condition of the ammunition or explosives, their level of deterioration and the way in which the local community handles them. Firearms: Any portable barreled weapon that expels, is designed to expel or may be readily converted to expel a shot, bullet or projectile by the action of an explosive, excluding antique firearms of their replicas. Antique firearms and their replicas shall be defined in accordance with domestic law. In no case, however, shall antique firearms include firearms manufactured after 1899. Light weapon: Any man-portable lethal weapon designed for use by two or three persons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, recoilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 millimetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Marking: The application of permanent inscriptions on weapons, ammunition and ammunition packaging to permit their identification. Render safe procedure (RSP): The application of special explosive ordnance disposal methods and tools to provide for the interruption of functions or separation of essential components to prevent an unacceptable detonation. Safe to move: A technical assessment, by an appropriately qualified technician or technical officer, of the physical condition and stability of ammunition and explosives prior to any proposed move. Should the ammunition and explosives fail a \u2018safe to move\u2019 inspection, they must be destroyed in situ (i.e., at the place where they are found) by a qualified EOD team acting under the advice and control of the qualified technician or technical officer who conducted the initial \u2018safe to move\u2019 inspection. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, revolvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, components and ammunition. Note 2 Excludes antique small arms and their replicas. Stockpile: In the context of DDR, the term refers to a large accumulated stock of weapons and explosive ordnance.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ef3354e6-0664-4796-b048-2834556494b6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "3. Introduction Disarmament is generally understood to be the act of reducing or eliminating arms and, as such, is applicable to all weapons systems, ammunition and explosives, including nuclear, chemical, biological, radiological and conventional systems. This module will focus only on conventional weapons systems and ammunition that are typically held by members of armed forces and groups dealt with during DDR programmes. When transitioning out of armed conflict, States may be vulnerable to conflict relapse, particularly if key conflict drivers, including the proliferation of arms and ammunition, remain unaddressed. Inclusive and effective arms control, and disarmament in particular, is critical to prevent and reduce armed conflict and crime and to support recovery and development, as reflected in the 2030 Agenda for Sustainable Development and the Security Council and General Assembly\u2019s 2016 resolutions on sustaining peace. National arms control management systems encompass more than just disarmament. Therefore, disarmament operations should be planned and conducted in coordination with, and in support of, other arms control and reduction measures, including SALW control (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). The disarmament component of any DDR programme should be specifically designed to respond and adapt to the security environment. It should also be planned in coherence with wider peace-making, peacebuilding and recovery efforts. Disarmament plays an essential role in maintaining a secure environment in which demobilization and reintegration can take place as part of a long-term peacebuilding strategy. Depending on the context, DDR phases could be differently sequenced with, for example, demobilization and reintegration paving the way for disarmament. The disarmament component of a DDR programme will usually consist of four main phases: (1) Operational planning; (2) Weapons collection; (3) Stockpile management; (4) Disposal of collected materiel. The cross-cutting activities that should take place throughout these four main phases are data collection, awareness raising, and monitoring and evaluation. Within each phase there are also a number of recommended specific components (see Table 1). TABLE 1: MAIN PHASES OF THE DISARMAMENT COMPONENT OF A DDR PROGRAMME", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "51bf7659-a7aa-41e6-82b6-76c8a0fd8b3e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the disarmament component of DDR programmes.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ff1456d2-bcff-43d8-88ae-0f08572793e1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.1 Voluntary In order to lay the foundation for an effective DDR programme and sustainable peace, disarmament shall be voluntary. Forced disarmament can have a negative impact on contexts in transition, including in terms of restoring trust in authorities and efforts towards national reconciliation. In addition, removing weapons forcibly from combatants or persons associated with armed forces and groups risks creating a security vacuum and an imbalance in military capabilities which may generate increased tensions and lead to a resumption of armed violence. Voluntary disarmament should be facilitated through strong sensitization and communication efforts. It should also be underpinned by firm guarantees of security and immunity from prosecution for the illegal possession of weapon(s) handed in.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "15e0703c-e3a5-4051-96f6-dbb57fb34879", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.2.1 Unconditional release and protection of children Agreeing on child-specific disarmament procedures avoids further possible abuse and exploitation of children, especially for political or tactical gain; and, prepares children for separate and specific child-related demobilization and reintegration processes (see IDDRS 5.20 on Children and DDR). Specific attention should also be given to the disarmament of youth (see IDDRS 5.30 on Youth and DDR).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "43c0bf95-82ff-40ff-ab68-74bf085dac1b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.3 Gender-responsive and inclusive Disarmament activities must not introduce distinctions based on sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and perceptions of such processes on women, men, boys and girls. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women and girls at each stage of the process. A gender-transformative approach actively examines, questions and changes unequal gender norms and imbalances of power. A gender-transformative approach thus helps countries to promote equitable rights and health, and contributes to the prevention of sexual and gender-based violence. A gender-transformative DDR programme should acknowledge, incorporate and address messages on masculinities and violence, including the linkage between masculinities and weapons ownership. Gender-transformative DDR programmes should also ensure that there are both male and female UN military personnel in leadership roles at pick-up points and mobile disarmament sites, and participating in the destruction of weapons. All precautions shall also be taken to avoid reinforcing or generating gender inequalities.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "e070d64a-00ca-4be6-9adc-950ae11e71cc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.4 Conflict sensitive Disarmament operations shall not increase the vulnerability of communities, groups or individuals to internal or external threats. Disarmament strategies should therefore be based on a thorough analysis of the security context, relevant actors and their military capabilities to avoid creating a security imbalance or vacuum, leading to further tensions or jeopardizing the implementation of a peace agreement.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "de8efc5f-9035-4232-87a0-57b724103a7f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.5 Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all disarmament operations on their territory and shall act in compliance with international arms control instruments and applicable legal frameworks. The primary responsibility for disarmament and weapons collection lies with the Government of the affected State. The support and specialist knowledge of the UN is placed at the disposal of a national Government to ensure that disarmament planning and implementation are conducted in accordance with international arms control instruments, standards and guidance, including those of the IDDRS, the IATG and MOSAIC. Strong national ownership is important, including where the UN is supporting DDR programmes in non-mission settings. Building national and local institutional and technical capacity is essential to the effective, successful, sustainable continuation of disarmament and other arms control efforts.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "ea62ff16-fd8d-4854-9a60-d2f679854fe4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.6 Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically qualified WAM advisers in the planning and implementation of disarmament operations is critical to their safety and success. Technical advisers shall have formal training and operational field experience in ammunition and weapons storage, marking, transportation, deactivation and the destruction of arms, ammunition and explosives, as relevant.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "411f5510-b59a-4390-a05c-f543068d3843", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "5. Planning and designing disarmament operations In order to effectively implement the disarmament component of a DDR programme, meticulous planning is required. Planning for disarmament operations includes information collection, a risk and security assessment, identification of eligibility criteria, the development of standard operating procedures (SOPs), the identification of the disarmament team structure, and a clear and realistic timetable for operations. All disarmament operations shall be based on gender responsive analysis. The disarmament component is often the first stage of the entire DDR programme, and operational decisions made at this stage will have an impact on subsequent stages. Disarmament, therefore, cannot be designed in isolation from the rest of the DDR programme, and integrated assessment and DDR planning is key (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, and IDDRS 3.11 on Integrated Assessments). It is essential to determine the extent of the capability needed to carry out a disarmament component, and then to compare this with a realistic appraisal of the current capacity available to deliver it. Requests for further assistance from the UN mission military and police components shall be made as early as possible in the planning stage (see IDDRS 4.40 on UN Military Roles and Responsibilities and IDDRS 4.50 on UN Police Roles and Responsibilities). In non-mission settings, requests for capacity development assistance for disarmament operations may be directed to relevant UN agency(ies). Key terms and conditions for disarmament should be discussed during the peace negotiations and included in the agreement (see IDDRS 2.20 on The Politics of DDR). This requires that parties and mediators have an in-depth understanding of disarmament and arms control, or access to expertise to guide them and provide a common understanding of the different options available. In some contexts, the handover of weapons from one party to another (for example, from armed groups to State institutions) may be inappropriate, resulting in the need for the involvement of a neutral third party.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b0a89c9f-8a2c-49ee-8762-015349bdc4ba", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 9, - "Paragraph": "5.1 Information collection Initial planning should be based on a careful data collection and analysis on the armed forces and groups to be disarmed, disaggregated by sex and age, as well as an analysis of the dynamics of armed violence and illicitly held weapons and ammunition. DDR programmes are increasingly implemented in environments with a myriad of armed forces and groups whose alliances are fluid or unclear, often within a context of weak State institutions and fragile or absent rule of law. Solid analysis informed by continuous data gathering and assessment is essential in order to navigate these challenging, rapidly changing environments.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "183a6b5d-e187-4bb3-9d5f-7ad54e578378", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.1.1 Integrated assessment A DDR integrated assessment should start as early as possible in the peace negotiation process and the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). This assessment should contribute to determining whether disarmament or any transitional arms control initiatives are desirable or feasible in the current context, and the potential positive and negative impacts of any such activities. The collection of information is an ongoing process that requires sufficient resources to ensure that assessments are updated throughout the lifecycle of a DDR programme. Information management systems and data protection measures should be employed from the start by DDR practitioners with support from the UN mission or lead UN agency(ies) Information Technology (IT) unit. The collection of data relating to weapons and those who carry them is a sensitive undertaking and can present significant risks to DDR practitioners and their sources. United Nations security guidelines should be followed at all times, particularly with regards to protecting sources by maintaining their anonymity. Integrated assessments should include information related to the political and security context and the main drivers of armed conflict. In addition, in order to design evidence-based, age-specific and gender-sensitive disarmament operations, the integrated assessment should include: An analysis of the memberships of armed forces and groups (number, origin, age, sex, etc.) and their arsenals (estimates of the number and the type of weapons, ammunition and explosives); An analysis of the patterns of weapons possession among men, women, girls, boys, and youth; A mapping of the locations and access routes to materiel and potential caches (to the extent possible); An understanding of the power imbalances and disparities in weapons possession between communities; An analysis of the use of weapons in the commission of serious human rights violations or abuses and grave breaches of international humanitarian law, as well as crime, including organized crime; An understanding of cultural and gendered attitudes towards weapons and the value of arms and ammunition locally; The identification of sources of illicit weapons and ammunition and possible trafficking routes; Lessons learnt from any past disarmament or weapons collections initiatives; An understanding of the willingness of and incentives for armed forces and groups to participate in DDR. An assessment of the presence of armed groups not involved in DDR and the possible impact these groups can have on the DDR process. Methods to gather data, including desk research, telephone interviews and face-to-face meetings, should be adapted to the resources available, as well as to the security and political context. Information should be centralized and managed by a dedicated focal point. Once sufficient, reliable information has been gathered, collaborative plans can be drawn up by the National DDR Commission and the UN DDR component in mission settings or the National DDR Commission and lead UN agency(ies) in non-mission settings outlining the intended locations and site requirements for disarmament operations, the logistics and staffing required to carry out disarmament, and a timetable for operations.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "91f991aa-9248-4967-ba26-31796aed4b9f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.1.2 Weapons survey An accurate and detailed weapons survey is essential to draw up effective and safe plans for the disarmament component of a DDR programme. Weapons surveys are also important for transitional weapons and ammunition management activities (IDDRS 4.11 on Transitional Weapons and Ammunition Management). Sufficient data on the number and type of weapons, ammunition and explosives that can be expected to be recovered are crucial. A weapons survey enables the accurate definition of the extent of the disarmament task, allowing for planning of the collection and future storage and destruction requirements. The more accurate and verifiable the initial data regarding the specifically identified armed forces and groups participating in the conflict, the better the capacity of the UN to make appropriate plans or provide national authorities with relevant advice to achieve the aims of the disarmament component. Data disaggregated by sex and age is a prerequisite for understanding the age- and gender-specific impacts of arms misuse and for designing evidence-based, gender-responsive disarmament operations to address them. It is important to take into consideration the fact that, while women may be active members of armed groups, they may not actually hold weapons. Evidence has shown that female combatants have been left out of DDR processes as a result of this on multiple occasions in the past. A gender-responsive mapping of armed forces and groups is therefore critical to identify patterns of gender-differentiated roles within armed forces and groups, and to ensure that the design of any approach is appropriately targeted. A weapons survey should be implemented as early as possible in the planning of a DDR programme; however, it requires significant resources, access to sensitive and often unstable parts of the country, buy-in from local authorities and ownership by national authorities, all of which can take considerable time to pull together and secure. A survey should draw on a range of research methods and sources in order to collate, compare and confirm information (see Annex C on the methodology of weapons surveys).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3fea8b14-6969-4bf9-b4e6-9d15ec31df2c", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.2 Objectives of disarmament The overarching aim of the disarmament component of a DDR programme is to control and reduce arms, ammunition and explosives held by combatants before demobilization in order to build confidence in the peace process, increase security and prevent a return to conflict. Clear operational objectives should also be developed and agreed. These may include: A reduction in the number of weapons, ammunition and explosives possessed by, or available to, armed forces and groups; A reduction in actual armed violence or the threat of it; Optimally zero, or at the most minimal, casualties during the disarmament component; An improvement in the perception of human security by men, women, boys, girls and youth within communities; A public connection between the availability of weapons and armed violence in society; The development of community awareness of the problem and hence community solidarity; The reduction and disruption of the illicit trade of weapons within the DDR area of operations; A reduction in the open visibility of weapons in the community; A reduction in crimes committed with weapons, such as conflict-related sexual violence; The development of norms against the illegal use of weapons.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b8ebe262-7e2e-4c28-8702-bf421d584cd4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 12, - "Paragraph": "5.3 Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of disarmament operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children and other specific-needs groups should also be considered. Operational and technical risks to be assessed when considering which approach to take might relate to the combatants themselves, as well as to the types of weapons, ammunition and explosives being collected, and to external threats. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety, and that many of the activities carried out during weapons collection operations have a high risk associated with them. However, national authorities, international organizations and non-governmental organizations (NGOs) must try to achieve the highest possible levels of safety.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "599c0b32-3db5-48e3-a1f1-32c025cd3616", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 13, - "Paragraph": "5.3.1 Operational risks There are likely to be several operational risks, depending on the context, including the following: Threats to the safety and security of DDR programme personnel (both UN and non-UN): During the disarmament phase of the DDR programme, staff are likely to be in direct contact with armed individuals, including members of both armed forces and groups. Staff should be conscious not only of the risks associated with handling weapons, ammunition and explosives, but also of the risks of unpredictable behaviour as a result of the significant levels of stress that disarmament activities can generate among combatants and other stakeholders. Avoid supporting weapons buy-back: UN supported DDR programmes shall avoid attaching monetary value to weapons as a means of encouraging their surrender by members of armed forces and groups. Weapons buy-back programmes within and outside DDR have proven to be inefficient and even counter-productive as they tend to fuel national and regional arms flows, which in the end can jeopardize the achievement of disarmament objectives in a DDR programme. Buy-back programmes can also have unintended societal consequences such as economically rewarding combatants and exacerbating existing gender inequalities Disarmament of foreign combatants: Disarmament operations may also need to consider armed foreign combatants. Foreign combatants may be disarmed in the host country or at the border of the country of origin to which they will be returning. DDR programmes should plan for disarmament of foreign combatants within or outside repatriation agreements between the country of origin and the host country (see IDDRS 5.40 on Cross-Border Population Movements). Terrorism and violent extremism threats: DDR programmes are increasingly being conducted in contexts affected by terrorism. Disarmament operations in these contexts require the highest security safeguards and robust on-site WAM expertise to maximize the safety of all involved. DDR practitioners should be aware of the requirements imposed on States by UN Security Council resolutions 2370 (2017) and 2482 (2019) and Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum, in terms of, inter alia, ensuring that appropriate legal actions are taken against those who knowingly engage in providing terrorists with weapons. Lack of sustainability: Disarmament operations shall not start unless the sustainability of funding and resources is guaranteed. Previous attempts to carry out disarmament operations with insufficient assets and funds have resulted in unconstructive, partial disarmament, a return to armed conflict, and the failure of the entire DDR process. The reconfiguring and closing of UN missions is another crucial moment that should be planned in advance. Such transitions often require handing over responsibility to national authorities or to the United Nations Country Team (UNCT). It is important to ensure these entities have the mandate and capacity to complete the DDR programme even after the withdrawal of UN mission resources. 5.3.2 Technical risks and hazards In order to deal with potential technical threats during the disarmament component of DDR programmes, and to implement an appropriate response to such threats, it is necessary to distinguish between risks and hazards. Commonly, a hazard is defined as \u201ca potential source of physical injury or damage to the health of people, or damage to property or the environment,\u201d while a risk can be defined as \u201cthe combination of the probability of occurrence of a hazard and the severity of that hazard\u201d (see ISO/IEC Guide 51: 2014 [E)). In terms of disarmament operations, many hazards are created by the presence of weapons, ammunition and explosives. The level of risk is mostly dependent on the knowledge and training of the disarmament teams (see section 5.7). The physical condition of the weapons, ammunition and explosives and the environment in which they are handed over or stored have a major effect on that risk. A range of techniques for estimating risk are contained in IATG 2.10 on Introduction to Risk Management Principles and Processes. All relevant guidelines contained in the IATG should be strictly adhered to in order to ensure the safety of all persons and assets when handling conventional ammunition. Adequate expertise is critical. Unqualified personnel should never handle ammunition or any type of explosive material.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "38cc6918-b9c3-433a-8a27-9c07e02deac4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 14, - "Paragraph": "5.4 Gender-sensitive disarmament operations If women are not adequately integrated into DDR programmes, and disarmament operations in particular, gender stereotypes of masculinity associated with violence, and femininity dissociated from power and decision-making, may be reinforced. If implemented in a gender-sensitive manner, a DDR programme can actually highlight the constructive roles of women in the transition from conflict to sustainable peace. Disarmament can increase a combatant\u2019s feeling of vulnerability. In addition to providing physical protection, weapons are often seen as important symbols of power and status. Men may experience disarmament as a symbolic loss of manhood and status. Undermined masculinities at all ages can lead to profound feelings of frustration and disempowerment. For women, disarmament can threaten the gender equality and respect that may have been gained through the possession of a weapon while in an armed force or group. DDR programmes should explore ways to promote alternative symbols of power that are relevant to particular cultural contexts and that foster peace dividends. This can be done by removing the gun as a symbol of power, addressing key concerns over safety and protection, and developing strategic engagement with women (particularly female dependants) in disarmament operations. Female combatants and women and girls associated with armed forces and groups are common in armed conflicts across the world. To ensure that men and women have equal rights to participate in the design and implementation of disarmament operations, a gender-inclusive and -responsive approach should be applied at every stage of assessment, planning, implementation, and monitoring and evaluation. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women at each stage of the DDR process. Gender-sensitive disarmament operations are proven to be more effective in addressing the impact of the illicit circulation and misuse of weapons than those that do not incorporate a gender perspective (MOSAIC 6.10 on Women, Men and the Gendered Nature of Small Arms and Light Weapons). Therefore, ensuring that gender is adequately integrated into all stages of disarmament and other DDR-related arms control initiatives is essential to the overall success of DDR processes.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e4ce10c3-b764-4303-b2b6-1660057610dc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 15, - "Paragraph": "5.5 Eligibility criteria for access to DDR programmes Establishing rigorous, unambiguous and transparent criteria that allow people to participate in DDR programmes is vital to achieving the objectives of DDR. Eligibility criteria must be carefully designed and agreed to by all parties, and screening processes must be in place in the disarmament stage. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligibility criteria shall be based on the content of the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligibility for a DDR programme must be gender inclusive and shall not discriminate on the basis of age or gender. Participants in DDR programmes may include individuals in support and non-combatant roles or those associated with armed forces and groups, including children. As these individuals are typically unarmed, they may not be eligible for disarmament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, women who are eligible to participate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public information and sensitization with commanders and potential DDR participants and beneficiaries is completed (on female participants and beneficiaries, see Figure 1 and Box 3). FIGURE 1: FEMALE ELIGIBILITY CRITERIA Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to increase their political weight could try to rapidly recruit civilians to meet the shortfall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "60947fdc-01ef-408a-a5f1-3c06f4e413f7", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.5.1 Weapons-related eligibility criteria Depending on the context and the content of the ceasefire and/or peace agreement, eligibility for a DDR programme can include specific weapons/ammunition-related criteria. These criteria should be based on a thorough understanding of the context if effective disarmament is to be achieved. The arsenals of armed forces and groups vary in size, quality and types of weapons. For instance, in conflicts where foreign States actively support armed groups, these groups\u2019 arsenals are often quite large and varied, including not only serviceable SALW but also heavy-weapons systems. Past experience shows that the eligibility criteria related to weapons and ammunition are often not consistent or stringent enough. This can lead to the inclusion of individuals who are not members of armed forces and groups and the collection of poor-quality materiel while illicit serviceable materiel remains in circulation. Accurate information regarding armed forces and groups\u2019 arsenals (see section 5.1) is key in determining relevant and effective weapons-related criteria. These include the type and status (serviceable versus non-serviceable) of weapons or the quantity of ammunition that a combatant should bring along in order to be enrolled in the programme. According to the context, the ratio of arms and ammunition to individual combatants can vary and may include SALW as well as heavy weapons and ammunition. In order to ascertain their eligibility, combatants may also need to take a weapons procedures test, which will identify their familiarity with and ability to handle weapons. Although members of armed groups may not have received formal training to military standards, they should be able to demonstrate an understanding of how to use a weapon. This test should be balanced against other ways to identify combatant status (see IDDRS 4.20 on Demobilization). Children with weapons should be disarmed but should not be required to demonstrate their capacity to use a weapon or prove familiarity with weaponry to be admitted to the DDR programme (see IDDRS 5.20 on Children and DDR). All weapons brought by ineligible individuals as part of a disarmament operation shall be collected even if these individuals will not be eligible to enter the DDR programme. To avoid confusion and frustration, it is key that eligibility criteria are communicated clearly and unambiguously to members of armed groups and the wider population (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Legal implications should also be clearly explained \u2014 for example, that the voluntary\u00a0submission of weapons during the disarmament phase by eligible and ineligible individuals will not result in prosecution for illegal possession.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "401f0afe-5bc8-42ea-a594-275a4b640aef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.6 Standard operating procedures Standard operating procedures (SOPs) are a set of mandatory step-by-step instructions designed to guide practitioners within a particular DDR programme in the conduct of disarmament operations and subsequent WAM activities. The development of disarmament SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to standardized regulations. In mission contexts, SOPs should identify the precise responsibilities of the various UN components involved in disarmament. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the DDR component, with the support of WAM advisers, and signed off by the head of the UN mission. All staff from the DDR component as well as UN military component members and any other partners supporting disarmament activities shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for the safe, effective and efficient conduct of the disarmament component of the DDR programme. All those engaged in supporting disarmament operations shall also be familiar with the relevant SOPs. A single disarmament SOP, or a set of SOPs each covering specific procedures related to disarmament activities, should be informed by the integrated assessment and the national DDR policy document, and comply with international guidelines and standards (IATG and MOSAIC), as well as with national laws and international obligations of the country where the programme is being implemented (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). SOPs should cover all disarmament-related activities and include two lines of management procedures: one for ammunition and explosives, and one for weapons systems. The SOP(s) should refer to and be consistent with any other WAM SOPs adopted by the mission and/or national authorities. While some missions and/or national authorities have developed a single disarmament SOP, others have preferred a set of SOPs. Regardless, SOPs should cover the following procedures: Reception of arms and/or ammunition and explosives in static or mobile disarmament; Compliance with weapons- and ammunition-related eligibility criteria (e.g., what is considered a serviceable weapon?); Weapons storage management; Ammunition and explosives storage management; Accounting for weapons and ammunition; Transportation of weapons; Transportation of ammunition; Storage checks; Reporting and investigating loss or theft; Destruction of weapons (or other appropriate methods of disposal and potential marking); Destruction of ammunition (or other appropriate methods of disposal). Managing spontaneous disarmament, including in advance of a formal DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "cebb7051-8d64-4ab6-aff0-7acfad05964d", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.7 Disarmament team structure The disarmament team is responsible for implementing all operational procedures for disarmament: physical verification of arms and ammunition, recording of materiel, issuance of disarmament receipts/certificates, storage of materiel, and the destruction of unsafe ammunition and explosives. WAM advisers (see Box 5) should be duly incorporated from the planning stage throughout the implementation of the disarmament phase. As per the IATG, force commanders (military component) should designate a force explosives safety officer responsible for advising on all arms, ammunition and explosives safety matters, including with regards to DDR activities (see Annex L of IATG 01.90). A disarmament team should include a gender-balanced composition of: DDR practitioners; A representative of the national DDR commission (and potentially other national institutions); An adequately sized technical support team from a specialized UN agency or NGO, including a team leader/WAM adviser (IMAS EOD level 3), two weapons inspectors to identify weapons and assess safety of items, registration officers, storemen/women and a medic; Military observers (MILOBs) and representatives from the protection force; National security forces armament specialists (police, army and/or gendarmerie); A representative from the mission\u2019s department for child protection; A national gender specialist. A national youth specialist. Depending on the provisions of the ceasefire and/or peace agreement and the national DDR policy document, commanders of armed groups may also be part of the disarmament team. Disarmament teams should receive training on the disarmament SOPs (see section 5.6), the chain of procedures involved in conducting disarmament operations, entering data into the registration database, and the types of arms and ammunition they are likely to deal with and their safe handling. Training should be designed by the DDR component with the support of WAM/EOD-qualified force representatives or a specialized UN agency or NGO. DDR practitioners and other personnel who are not arms and ammunition specialists should also attend the training to ensure that they fully understand the chain of operations and security procedures involved; however, unless qualified to do so, staff shall not handle weapons or ammunition at any stage. Before the launch of operations, a simulation exercise should be organized to test the planning phase, and to support each stakeholder in understanding his or her role and responsibilities. The mission DDR component, specialized UN agencies, and the military component should identify liaison officers to facilitate the implementation of disarmament operations In non-mission settings, the conduct and security of disarmament operations may rely on national security forces, joint commissions or teams and on national specialists with technical support from relevant UN agency (ies), multilateral and bilateral partners. The UN and partners should support the organization of training for national disarmament teams to develop capacity.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8cb6f11e-effa-4056-adc1-f11010f1e7a5", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.8 Timelines for disarmament Timelines for the implementation of the disarmament component of a DDR programme should be developed by taking the following factors into account: The provisions of the peace agreement or the ceasefire agreement; The availability of accurate information about demographics, including sex and age, as well as the size of the armed forces and groups to be disarmed; The location of the armed forces\u2019 and groups\u2019 units and the number, type and location of their weapons; The nature, processing capacity and location of mobile and static disarmament sites; The time it takes to process each ex-combatant or person formerly associated with an armed force or group (this could be anywhere from 15 to 20 minutes per person). The simulation exercise will help to determine how long individual weapons collection and accounting will take. Depending on the nature of the conflict and other political and social conditions, a well-planned and well-implemented disarmament component may see large numbers of combatants and persons associated with armed forces and groups arriving for disarmament during the early stages of the DDR programme. The number of individuals reporting for disarmament may drop in the middle of the process, but it is prudent to plan for a rush towards the end. Late arrivals may report for disarmament because of improved confidence in the peace process or because some combatants and weapons have been held back until the final stages of disarmament as a self-protection measure. The minimum possible time should be taken to safely process combatants and persons associated with armed forces and groups through the disarmament and demobilization phases, and then back into the community. This swiftness is necessary to avoid a loss of momentum and to prevent former combatants and persons formerly associated with armed forces and groups from settling in temporary camps away from their communities. Depending on the context, individuals may leave armed groups and engage in spontaneous disarmament outside of official DDR programme and disarmament operations (see section 6.3). In such situations, DDR practitioners should ensure adherence to this disarmament standard as much as possible. To facilitate this spontaneous disarmament process, procedures and timelines should be clearly communicated to authorities, members of armed groups and the wider community.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "56e78eeb-39ee-48d6-a8a2-fc41f32c7550", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.1 Disarmament locations The planning of disarmament operations should be initiated at the peace negotiations stage when the appropriate modus operandi for disarming combatants and persons associated with armed forces and groups will be set out. The UN should support the national authorities in identifying the best disarmament approach. Mobile and static approaches have been developed to fit different contexts and constraints, and can be combined to form a multi-strand approach. Depending on the national strategy and the sequencing of DDR phases, the disarmament component may be intrinsically linked to demobilization, and sites for both activities could be combined (see IDDRS 4.20 on Demobilization). The selection of the approach, or combination of approaches, to take should be based on the following: Findings from the integrated assessment and weapons survey, including a review of previous approaches to disarmament (see section 5.1); Discussions and strategic planning by the national authorities; Exchanges with leaders of armed forces and groups; The security and risk assessment; Gender analysis; Financial resources. TABLE 2: ADVANTAGES AND DISADVANTAGES OF MOBILE AND STATIC DISARMAMENT Notwithstanding the selection of the specific disarmament approach, all combatants and persons associated with armed forces and groups should be informed of: The time and date to report, and the location to which to report; Appropriate weapons and ammunition safety measures; The activities involved and steps they will be asked to follow; The level of UN or military security to expect on arrival.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3a12366d-9f75-430c-8ced-010f348b7ad6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.1.1 Static disarmament Static or site-based (cantonment) disarmament uses specifically designed disarmament sites to carry out the disarmament operation. These require detailed planning and considerable organization and rely on the coordination of a range of implementing partners. The establishment and management of disarmament sites should be specifically included in the peace agreement to ensure that former warring factions agree and are aware that they have a responsibility under the peace agreement to proceed to such sites. Depending on the disarmament plan, geographic and security constraints, combatants and persons associated with armed forces and groups can move directly to disarmament sites, or their transportation can be organized through pick-up points.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c8971dc8-2cbe-4f8d-9df6-163cbff77b5f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Pick-up points The role of pick-up points (PUPs) is to concentrate combatants and persons associated with armed forces and groups in a safe location, prior to a controlled and supervised move to designated disarmament sites. Administrative and safety processes begin at the PUP. There are similarities between procedures at the PUP and those carried out during mobile disarmament operations, but the two processes are different and should not be confused. Members of armed forces and groups that report to a PUP will then be moved to a disarmament site, while those who enter through the mobile disarmament route will be directed to make their way to demobilization. PUPs are locations agreed to in advance by the leaders of armed forces and groups and the UN mission military component. They are selected because of their convenience, security and accessibility for all parties. The time, date, place and conditions for entering the disarmament process should be negotiated by commanders, the National DDR Commission and the DDR component in mission settings and the UN lead agency(ies) in non-mission settings. Combatants often need to be moved from rural locations, and since many armed forces and groups will not have adequate transport, PUPs should be situated close to their positions. PUPs shall not be located in or near civilian areas such as villages, towns or cities. Special measures should be considered for children associated with armed forces and groups arriving at PUPs (see IDDRS 5.20 on Children and DDR). Gender-responsive provisions shall also be planned to provide guidance on how to process female combatants and WAAFG, including DDR/UN military staff composed of a mix of genders, separation of men and women during screening and clothing/baggage searches at PUPs, and adequate medical support particularly in the case of pregnant and lactating women (see IDDRS 5.10 on Women, Gender and DDR). Disarmament operations should also include combatants and persons associated with armed forces and groups with disabilities and/or chronically ill and/or wounded who may not be able to access the PUPs. These persons may also qualify for disarmament, while requiring special transportation and assistance by specialists, such as medical staff and psychologists (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabilities and DDR). Once combatants and persons associated with armed forces and groups have arrived at the designated PUP, they will be met by male and female UN representatives, including military and child protection staff, who shall arrange their transportation to the disarmament site. This first meeting between armed individuals and UN staff shall be considered a high-risk situation, and all members of armed forces and groups shall be considered potentially dangerous until disarmed. At the PUP, combatants and persons associated with armed forces and groups may either be completely disarmed or may keep their weapons during movement to the disarmament site. In the latter case, they should surrender their ammunition. The issue of weapons surrender at the PUP will either be a requirement of the peace agreement, or, more usually, a matter of negotiation between the leadership of armed forces and groups, the national authorities and the UN. The following activities should occur at the PUP: Members of the disarmament team meet combatants and persons associated with armed forces and groups outside the PUP at clearly marked waiting areas; personnel deliver a PUP briefing, explaining what will happen at the sites. Qualified personnel check that weapons are clear of ammunition and made safe, ensuring that magazines are removed; combatants and persons associated with armed forces and groups are screened to identify those carrying ammunition and explosives. These individuals should be immediately moved to the ammunition area in the disarmament site. Qualified personnel conduct a clothing and baggage search of all combatants and persons associated with armed forces and groups; men and women should be searched separately by those of the same sex. Combatants and persons associated with armed forces and groups with eligible weapons and safe ammunition pass through the screening area to the transport area, before moving to the disarmament site. The UN shall be responsible for ensuring the protection and physical security of combatants and persons associated with armed forces and groups during their movement from the PUP. In non-mission settings, the national security forces, joint commissions or teams would be responsible for the above-mentioned tasks with technical support from relevant UN agency(ies), multilateral and bilateral partners. Those individuals who do not meet the eligibility criteria for entry into the DDR programme should leave the PUP after being disarmed and, where needed, transported away from the PUP. Individuals with defective weapons should hand these over, but, depending on the eligibility criteria, may not be allowed to enter the DDR programme. These individuals should be given a receipt that shows full details of the ineligible weapon handed over. This receipt may be used if there is an appeal process at a later date. People who do not meet the eligibility criteria for the DDR programme should be told why and orientated towards different programmes, if available, including CVR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "308bf403-7958-4192-972d-bb33748765b4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 25, - "Paragraph": "6.1.2 Mobile disarmament In certain circumstances, the establishment of a fixed disarmament site may be inappropriate. In such cases, one option is the use of mobile disarmament, which usually consists of a group of modified road vehicles and has the advantage of decreased logistical outlay, increased flexibility, reduced cost, and rapid deployment and assembly. A mobile approach permits a more rapid response than site-based disarmament and can be used when weapons are concentrated in a specific geographical area, when moving collected arms, or when assembling scattered members of armed forces and groups would be difficult or trigger insecurity. This approach allows for more flexibility and for the limited movement of armed combatants and persons associated with armed forces and groups who remain in their communities. Mobile disarmament may also be more accessible to women, children, disabled and other specific-needs groups. While mobile disarmament ensures the limited movement of unsafe ammunition, a sound mobile WAM and EOD capacity is required to collect and destroy items on site and to transport arms and ammunition to storage facilities.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "af0e226c-bff4-470d-9820-939773e8ce42", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 25, - "Paragraph": "6.2 Procedures for disarmament A disarmament SOP should state the step-by-step procedures for receiving weapons and ammunition, including identifying who has responsibility for each step and the gender-responsive provisions required. The SOP should also include a diagram of the disarmament site(s) (either mobile or static). Combatants and persons associated with armed forces and groups are processed one by one. Procedures, to be adapted to the context, are generally as follows. Before entering the disarmament site perimeter: The individual is identified by his/her commander and physically checked by the designated security officials. Special measures will be required for children (see IDDRS 5.20 on Children and DDR). Men and women will be checked by those of the same sex, which requires having both male and female officers among UN military/DDR staff in mission settings and national security/DDR staff in non-mission settings. If the individual is carrying ammunition or explosives that might present a threat, she/he will be asked to leave it outside the handover area, in a location identified by a WAM/EOD specialist, to be handled separately. The individual is asked to move with the weapon pointing towards the ground, the catch in safety position (if relevant) and her/his finger off the trigger. After entering the perimeter: The individual is directed to the unloading bay, where she/he will proceed with the clearing of his/her weapon under the instruction and supervision of a MILOB or representative of the UN military component in mission settings or designated security official in a non-mission setting. If the individual is under 18 years old, child protection staff shall be present throughout the process. Once the weapon has been cleared, it is handed over to a MILOB or representative of the military component in a mission setting or designated security official in a non-mission setting who will proceed with verification. If the individual is also in possession of ammunition for small arms or machine guns, she/he will be asked to place it in a separate pre-identified location, away from the weapons. The materiel handed in is recorded by a DDR practitioner with guidance on weapons and ammunition identification from specialist UN agency personnel or other arms specialists along with information on the individual concerned. The individual is provided with a receipt that proves she/he has handed in a weapon and/or ammunition. The receipt indicates the name of the individual, the date and location, the type, the status (serviceable or not) and the serial number of the weapon. Weapons are tagged with a code to facilitate storage, management and recordkeeping throughout the disarmament process until disposal (see section 7.1). Weapons and ammunition are stored separately or organized for transportation under the instructions and guidance of a WAM adviser (see section 7.2 and DDR WAM Handbook Unit 11). Ammunition presenting an immediate risk, or deemed unfit for transport, should be destroyed in situ by qualified EOD specialists.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "78d3590f-1d8a-415c-b201-d0873e490952", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.3 Spontaneous disarmament outside of official disarmament operations In some contexts, in order to encourage individuals to leave armed groups when there is no DDR programme, a modus operandi for receiving combatants and persons associated with armed groups may be established. This may include the identification of a network of reception points, such as\u00a0DDR offices or peacekeeping camps, or the deployment of mobile disarmament units. Procedures should be communicated to authorities, members of armed groups and the wider community on a regular basis to ensure all are informed and sensitized (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In the case peacekeeping camps are designated as reception points, the DDR component \u2013\u00a0in\u00a0coordination with the military component and the battalion commander \u2013 should identify specific focal points within the camp to deal with combatants and persons associated with armed groups. These focal points should be trained in how to handle and disarm new arrivals, including taking gender-sensitive approaches with women and age-sensitive approaches with children, and in how to register and store materiel until DDR practitioners take over. Unsafe items should be stored in a pre-identified or purpose-built area as advised by DDR WAM advisers until specialized UN agency personnel or force EOD specialists can assess the safety of the items and recommend appropriate action.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c69578db-66c7-4040-966b-8eecbcc3b396", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 27, - "Paragraph": "7. Stockpile management phase The term \u2018stockpile management\u2019 can be defined as procedures and activities designed to ensure the safe and secure accounting, storage, transportation and handling of arms, ammunition and explosives. The IATG and MOSAIC shall guide the design and implementation of this phase, and qualified WAM advisers should develop relevant SOP(s) (see section 5.6). The stockpile management and destruction of ammunition and explosives require a much more detailed technical response, as the risks and hazards are greater than for weapons, and stockpiles present a larger logistical challenge. Ammunition and explosives shall be handled only by those with the necessary technical competencies.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "20018301-b227-458d-8184-514b2a5b26f4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.1 Accounting for weapons and ammunition The recordkeeping of weapons, ammunition and explosives during the disarmament phase of a DDR programme is critical to the effective management of materiel, to ensure the transparency of the DDR programme, and to monitor activities and prevent diversion. Information management systems (IMS) used by DDR components and lead UN agency(ies) supporting national authorities for registering combatants and accounting for weapons should provide sufficient recorded information to allow for precise identification and tracking of the movement of materiel from the point of collection to the point of disposal (see IDDRS 4.20 on Demobilization). In order to support effective recording, close-up and full-frame photographs should be taken of each piece of materiel wherever possible. TABLE 3: RECORDING SALW, AMMUNITION AND EXPLOSIVES In smaller disarmament operations or when IMS has not yet been set for the capture of the above information, a separate simple database should be developed to manage weapons, ammunition and explosives collected. For example, the use of a standardized Excel spreadsheet template which would allow for the effective centralization of data. DDR components and UN lead agency(ies) should dedicate appropriate resources to the development and ongoing maintenance of this database and consider the establishment of a more comprehensive and permanent IMS where disarmament operations will clearly involve the collection of thousands of weapons and ammunition. Ownership of data by the UN, the national authorities or both should be decided ahead of the launch of the DDR programme. Data should be protected in order to ensure the security of DDR participants and stockpiles but could be shared with relevant UN entities for analysis and tracing purposes, as appropriate. In instances where the peace agreement does not prevent the formal tracing or investigation of the weapons and ammunition collected, specialized UN entities including Panels of Experts or a Joint Mission Analysis Centre may analyse information and send tracing requests to national authorities, manufacturing countries or other former custodians of weapons regarding the origins of the materiel. These entities should be given access to weapons, ammunition and explosives collected and also check firearms against INTERPOL\u2019s Illicit Arms Records and tracing Management System (iARMS) database. Doing this would shed light on points of diversion, supply chains, and trafficking routes, inter alia, which may contribute to efforts to counter proliferation and illicit trafficking and support the overall objectives of DDR. Forensic analysis may also lead to investigations regarding the licit or illicit origin of the collected weapons and possible linkages to terrorist organizations, in line with UN Security Council resolutions 2370 (2017) and 2482 (2019). In a number of DDR settings, ammunition is generally handed in without its original packaging and will be loose packed and consist of a range of different calibres. Ammunition should be segregated into separate calibres and then accounted for in accordance with IATG 03.10 on Inventory Management.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "52183809-d118-4b0e-9173-895db619dfa8", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.2 Transportation of weapons and ammunition The transportation of dangerous goods from disarmament sites to storage areas should be planned in order to mitigate the risk of explosions and diversions. A WAM adviser should supervise the organization of materiel: arms and ammunition should be transported separately and moved in different shipments. Similarly, whenever advisable for security reasons and practicable in terms of time and capacity, the weapons to be transported should be made temporarily inactive by removing a principal functional part (e.g., bolt, cylinder, slide) and providing for separate transportation of ammunition, ultimately in a different shipment or convoy. All boxes and crates containing weapons or ammunition should be secured and sealed prior to loading onto transport vehicles. As most DDR materiel is transported by road, security of transportation should be ensured by the UN military component in mission settings or by national security forces or by designated security officials in non-mission settings. In the absence of qualified personnel, all ammunition and explosives other than small arms and machine gun ammunition should not be transported. In such cases, SOPs should provide directions and WAM advisers should be contacted to confirm instructions on how and where the remaining ammunition should be stored until relevant personnel are able to come and transport it or destroy it in situ. Upon receipt, the shipment should be checked against the DDR weapons and ammunition database, which should be updated accordingly, and a handover declaration should be signed.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "efe7b762-3036-43bd-a4e9-2ae2f0471d30", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.3 Storage The safety and security of collected weapons, ammunition and explosives shall be a primary concern. This is because the diversion of materiel or an unplanned storage explosion would have an immediate negative impact on the credibility and the objectives of the whole DDR programme, while also posing a serious safety and security risk. DDR programmes very rarely have appropriate storage infrastructure at their disposal, and most are therefore required to build their own temporary structures, for example, using shipping containers. Conventional arms and ammunition can be stored effectively and safely in these temporary facilities if they comply with international guidelines including IATG 04.10 on Field Storage, IATG 04.20 on Temporary Storage and MOSAIC 5.20 on Stockpile Management. The stockpile management phase shall be as short as possible. The sooner that collected weapons and ammunition are disposed of (see section 8), the better in terms of (1) security and safety risks; (2) improved confidence and trust; and (3) a lower requirement for personnel and funding. Post-collection storage shall be planned before the start of the collection phase with the support of a qualified DDR WAM adviser who will determine the size, location, staff and equipment required based on the findings of the integrated assessment (see section 5.1). The SOP should identify the actors responsible for securing storage sites, and a risk assessment shall be conducted by a WAM adviser in order to determine the optimal locations for storage facilities, including appropriate safety distances. The assessment shall also help identify priorities in terms of security measures to be adopted with regard to physical protection (see DDR WAM Handbook Unit 16). The content of DDR storage sites shall be checked and verified on a regular basis against the DDR weapons and ammunition database (see section 7.3.1). Any suspected loss or theft shall be reported immediately and investigated according to the SOP (see MOSAIC 5.20 for an investigative report template as well as UN SOP Ref.2017.22 on Loss of Weapons and Ammunition in Peace Operations). Weapons and ammunition must be taken from a store only by personnel who are authorized to do so. These personnel and their affiliation should be identified and authenticated before removing the materiel. The details of personnel removing and returning materiel should be recorded in a log, identifying their name, affiliation and signature, dates and times, weapons/ammunition details and the purpose of removal.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "38937412-b43a-406f-9706-eb027d1f12bc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 29, - "Paragraph": "7.3.1 Storing weapons The storage of weapons is less technical than that of ammunition and explosives, with the primary risks being loss and theft due to poor management. Although options for security measures are often quite limited in the field, in order to prevent or delay theft, containers should be equipped with fixed racks on which weapons can be secured with chains or steel cables affixed with padlocks. Some light weapons that contain explosive components, such as man-portable air-defence systems, will present explosive hazards and should be stored with other explosive materiel, in line with guidance on Compatibility Groups as defined by IATG 01.50 on UN Explosive Hazard Classification Systems and Codes. To allow for effective management and stocktaking, weapons that have been collected should be tagged. Most DDR programmes use handwritten tags, including the serial number and a tag number, which are registered in the DDR database. However, this method is not effective in the long term and, more recently, DDR components have been using purpose-made bar code tags, allowing for electronic reading, including with a smartphone. A physical stock check by number and type of arms should be conducted on a weekly basis in each storage facility, and the serial numbers of no less than 10 per cent of arms should be checked against the DDR weapons and ammunition database. Every six months, a 100 per cent physical stock check by quantity, type and serial number should be conducted, and records of storage checks should be kept for review and audit processes.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "79a4860b-85ac-46f0-84f8-bf64e6c8f64f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 30, - "Paragraph": "7.3.2 Storing ammunition and explosives The storage of ammunition and explosives, other than for small arms and machine guns (1.4 UN Hazard Division), requires highly qualified personnel, as the risks related to this materiel are substantial. Technical guidance to minimize the risk of accidents and their effects is very specific with regard to storing ammunition and explosives in line with Compatibility Groups (see IATG 01.50) and distances (see IATG 2.20). Ammunition collected during the disarmament phase of a DDR programme is often of unknown status and may have been stored in non-optimal environmental conditions (e.g., high temperature/high humidity) that render ammunition unsafe. A thorough risk assessment of ammunition storage facilities shall be carried out by the WAM adviser. A range of quantitative and qualitative methods for this assessment are available in IATG 2.10. In accordance with the IATG, all ammunition storage facilities should be at a minimum of Risk-Reduction Process Level 1 compliance (see IATG 12.20) in order to mitigate the risk of explosions and diversion. A physical stock check by quantity and type of ammunition should be conducted on a weekly basis. An accessible demolition area that can be used for the destruction of ammunition deemed unsafe and at risk of detonation or deflagration should be identified.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2656a2a2-191d-4ffc-97ec-64f6f22295ef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8. Disposal phase Destruction shall be the preferred method of disposal of materiel collected through DDR. However, other options may be possible, including the transfer of materiel to national stockpiles and the deactivation of weapons. Operations should be safe, cost-effective and environmentally benign.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "295abe59-21a7-4d4c-be29-649f4b848886", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1 Destruction of materiel Destruction reduces the flow of illicit arms and ammunition in circulation and removes the risk of materiel being diverted (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Arms and ammunition that are surrendered during disarmament operations are in an unknown state and likely hazardous, and their markings may have been altered or removed. The destruction of arms and ammunition during a DDR programme is a highly symbolic gesture and serves as a strong confidence-building measure if performed and verified transparently. Furthermore, destruction is usually less financially burdensome than storing and guarding arms and ammunition in accordance with global guidelines. Obtaining agreement from the appropriate authorities to proceed usually takes time, resulting in delays and related risks of diversion or unplanned explosions. Disposal methods should therefore be decided upon with the national authorities at an early stage and clearly stated in the national DDR programme. Transparency in the disposal of weapons and ammunition collected from former warring parties is key to building trust in DDR and the entire peace process. A clear plan for destruction should be established by the DDR component or the lead UN agency(ies) with the support of WAM advisers, including the most suitable method for destruction (see Annex E), the development of an SOP, the location, as well as options for the processing and monitoring of scrap metal recycling, if relevant, and the associated costs of the destruction process. The plan shall also provide for the monitoring of the destruction by a third party to ensure that the process was efficient and that all materiel is accounted for to avoid diversion. The physical destruction of weapons is much simpler and safer than the physical destruction of ammunition, which requires highly qualified personnel and a thorough risk assessment.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "034e4ff0-af92-493e-82d0-c22d0f2a2a2e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1.1 Destruction of weapons In most existing DDR programmes, due to the absence of an industrial steel smelting facility to melt down small arms, cutting is the preferred method of destruction, particularly where quantities of weapons are limited and where it is logistically easier and safer to take the cutting tool to the weapons rather than vice versa. If not done correctly, cutting carries the risk that the parts may be re-used to produce new weapons. Cutting is also labour intensive and produces significant quantities of scrap metal. (See Annex E to select the most suitable method of destruction.) With regard to heavy weapons, demilitarization by dismantling and recycling should be the preferred disposal option for the majority of these systems. The market for conversion to civilian use is very limited. This is because sale is also a proliferation risk and reputable end users are rare. The demilitarization by dismantling and recycling technique involves the cleaning and dismantling/cutting of the vehicle but results in significant quantities of scrap. If a large quantity of heavy weapons is to be destroyed, financial planning could include the value of the scrap recovered. It is also important to maintain strict control over weapons designated for destruction to prevent the risk of their entry into the illicit market before the destruction takes place.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "125cdc05-51d5-4727-872a-8d4f5f95f545", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1.2 Destruction of ammunition The safe destruction of recovered ammunition and explosives presents a variety of technical challenges, and the demolition of a large number of explosive items requires a significant degree of training. Risks inherent in destruction are significant if the procedure does not comply with strict technical guidelines (see IATG 10.10), including casualties and contamination. During the disarmament phase of a DDR programme, ammunition may need to be destroyed either at the collection point (PUP, disarmament site) because it is unsafe, or after being transferred to a secure DDR storage facility. Ammunition destruction requires a strict planning phase by WAM/EOD advisers or engineers who should identify priorities, obtain authorization from the national authorities, select the most appropriate method (see Annex E) and location for destruction, and develop a risk assessment and security plan for the operation. The following types of ammunition should be destroyed as a priority: (a) ammunition that poses the greatest risk in terms of explosive safety, (b) ammunition that is attractive to criminals or armed groups, (c) ammunition that must be destroyed in order to comply with international obligations (for instance, anti-personnel mines for States that are party to the Mine Ban Treaty) and (d) small arms and machine gun ammunition less than 20 mm. After destruction, decontamination operations at demolition sites and demilitarization facilities should be undertaken to ensure that all recovered materials and other generated residues, including unexploded items, are appropriately treated, and that scrap and empty packaging are free from explosives.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "3f33c063-1967-45b5-9e7b-f2d221287740", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.2 Transfers to national authorities National authorities may insist that serviceable materiel collected during disarmament should be incorporated into national stockpiles. Reasons for this may be linked to a lack of resources to acquire new materiel, the desire to regain control over materiel previously looted from national stockpiles or the existence of an arms embargo making procurement difficult. Before transferring arms or ammunition to the national authorities, the DDR component or lead UN agency(ies) shall take account of all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek the advice of the mission\u2019s or lead UN agency(ies) legal adviser (see IDDRS 2.11 on The Legal Framework for UN DDR). If the host State is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such materiel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy, materiel shall not be transferred where there are substantial indications that the consignee is committing grave violations of international humanitarian, human rights or refugee law. WAM advisers should explain to the national authorities the potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles. These consequences not only include the symbolic connotations of using conflict weapons, but also the costs and operational challenges that come from the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remarking of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "50751a60-9736-4356-a73e-5d8c2d6d7d5a", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 32, - "Paragraph": "8.3 Deactivation of weapons The deactivation of arms involves rendering the weapon incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deactivated in compliance with international guidelines by a competent State authority. Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable; this includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Weapons that have not been properly deactivated represent a significant threat, as they may be reactivated and used by criminals and terrorists. While destruction of weapons should be the preferred method of disposal, deactivation could be stipulated as part of a peace agreement where some of the collected weapons would be used in museum settings, or to create \u2018peace art\u2019 or monuments, to symbolically reflect the end of armed conflict. The process of deactivation should occur rapidly after a peace agreement so that weapons do not remain indefinitely in stores incurring unnecessary costs and raising the risk of diversion.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e6f23b9e-6d7c-49ef-b649-4d342cfe1d3c", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 33, - "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction EOD\texplosive ordnance disposal IATG\tInternational Ammunition Technical Guidelines IMAS\tinternational mine action standard/standards IMS\tinformation management systems MILOB\tmilitary observer MOSAIC\tModular Small-Arms Control Implementation Compendium NGO\tnon-governmental organization PUP\tpick-up point RSP\trender safe procedure SALW\tsmall arms and light weapons SOP\tstandard operating procedure WAAFG\twomen associated with armed forces and groups WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "709f49e7-4788-4126-b817-0ac81e21b86b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 33, - "Paragraph": "Annex B: Normative documents The following normative documents (i.e., documents containing applicable norms, standards and guidelines) contain provisions that apply to the processes dealt with in this module. International Ammunition Technical Guidelines, https://www.un.org/disarmament/un-saferguard/guide-lines. International Standards Organization, ISO Guide 51: \u2018Safety Aspects: Guidelines for Their Inclusion in Standards\u2019. Modular Small-arms-control Implementation Compendium, https://www.un.org/disarmament/convarms/mosaic. Organization for Security and Cooperation in Europe, Best Practice Guide: Minimum Standards for National Procedures for the Deactivation of SALW (Vienna, 2018). Small Arms Survey and South Eastern and Eastern Europe Clearinghouse for the Control of Small Arms (SEESAC), SALW Survey Protocols, http://www.seesac.org/Survey-Protocols. SEESAC, Defence Conversion \u2013 The Disposal and Demilitarization of Heavy Weapons Systems, 2006. UNDPA/PMD and UNDPKO/DPET, Aide Memoire: Engaging with Non-State Armed Groups (NSAGs) for Political Purposes: Considerations for UN Mediators and Missions, 2017. UNDOS and UNDPO, UN Manual on Ammunition Management, 2019. UNDOS, UNDPO, UNDPPA, UNDSS, Policy: Weapons and Ammunition Management, Ref PK/G/2019.3, http://dag.un.org/handle/11176/400906. UNDOS, UNDPO, UNDPPA, UNDSS, SOP: Loss of Weapons and Ammunition in Peace Operations. Ref.2017.22. UN Department of Peacekeeping Operations and UN Office for Disarmament Affairs. Effective Weapons and Ammunition Management in a Changing Disarmament, Demobilization and Reintegration Context. Handbook for United Nations DDR practitioners. 2018. Referred as \u2018DDR WAM Handbook\u2019 in this standard. UN Mine Action Service, IMAS 11.10\u201311.30: \u2018Stockpile Destruction\u2019, http://www.mine actionstandards.org.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "50e27784-3833-4f75-afb7-c5111c00125b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Annex C: Weapons survey Source: DDR WAM Handbook, Unit 13 A weapons survey can take more than a year from the time resources are allocated and mobilized to completion and the publication of results and recommendations. The survey must be designed, implemented and the results applied in a gender responsive manner. Who should implement the weapons survey? While the DDR component and specialized UN agencies can secure funding and coordinate the process, it is critical to ensure that ownership of the project sits at the national level due to the sensitivities involved, and so that the results have greater legitimacy in informing any future national policymaking on the subject. This could be through the National Coordinating Mechanism on SALW, for example, or the National DDR Commission. Buy-in must also be secured from local authorities on the ground where research is to be conducted. Such authorities must also be kept informed of developments for political and security reasons. Weapons surveys are often sub-contracted out by UN agencies and national authorities to independent and impartial research organizations and/or an expert consultant to design and coordinate the survey components. The survey team should include independent experts and surveyors who are nationals of the country in which the DDR component or the UN lead agency(ies) is operating and who speak the local language(s). The implementation of weapons surveys should always serve as an opportunity to develop national research capacity. What information should be gathered during a weapons survey? Weapons surveys can support the design of multiple types of activities related to SALW control in various contexts, including those related to DDR. The information collected during this process can inform a wide range of initiatives, and it is therefore important to identify other UN stakeholders with whom to engage when designing the survey to avoid duplication of effort. Components Contextual analysis: conflict analysis; mapping of armed actors; political, economic, social, environmental, cultural factors. Weapons distribution assessment: types; quantities; possession by men, women and children; movements of SALW; illicit sources of weapons and ammunition; potential locations of materiel and caches. Impact survey: impact of weapons on children, women, men, vulnerable groups, DDR beneficiaries etc.; social and economic developments; number of acts of armed violence and victims. Perception survey: attitudes of various groups towards weapons; reasons for armed groups holding weapons; alternatives to weapons possession, etc. Capacity assessment: community, local, national coping mechanism; legal tools; security and non-security responses.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b555dd71-ccd3-411f-be11-36dee14fdfe2", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 35, - "Paragraph": "Methodology The survey should draw on a variety of research methods and sources in order to collate, compare and confirm information \u2014 e.g., desk research, collection of official quantitative data (including crime and health data related to firearms), and interviews with key informants such as national security and defence forces, community leaders, representatives of civilian groups (including women, youth and professionals) affected by armed violence, armed groups, foreign analysts and diplomats. The main component of the survey should be the perception survey (see above) \u2014 i.e., the administration of a questionnaire. A representative sample is to be determined by an expert according to the target population. The questionnaire should be developed and administered by a research team including male and female nationals, ensuring respect for ethical considerations and gender and cultural sensitivities. The questionnaire should not take more than 30 minutes to administer, and careful thought should be given as to how to frame the questions to ensure maximum impact (see Annex C of MOSAIC 5.10 for a list of sample questions). A survey can help the DDR component to identify interventions related to disarmament of combatants or ex-combatants, but also to CVR and other transitional programming. Among others, the weapons survey will help identify the following: Communities particularly affected by weapons availability and armed violence. Communities particularly affected by violence related to ex-combatants. Communities ready to participate in CVR and the types of programming they would like to see developed. Types of weapons and ammunition in circulation and in demand. Trafficking routes and modus operandi of weapons trafficking. Groups holding weapons and the profiles of combatants. Cultural and monetary values of weapons. Security concerns and other negative impacts linked to potential interventions.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6ea990f5-220d-43aa-ac44-01621fbd2192", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 37, - "Paragraph": "Destruction of SALW There are many different techniques for destroying SALW that vary in complexity, cost and results. The DDR component in mission settings and the UN lead agency(ies) in non-mission settings will be responsible for identifying the most suitable method with the support of a technical adviser or specialized UN agency. Selection criteria include: Type of weapons; Quantity of weapons; Availability of funds (for equipment, training and staff); Available level of WAM expertise; Availability of local resources and technology; Available infrastructure; Security constraints; Local customs and references. In most existing DDR programmes, weapons cutting is the preferred though not necessarily the most efficient method of destruction. The advantages and disadvantages of this method and others are outlined below. Other methods of weapons destruction, including burning (with kerosene) and crushing (with tracked vehicles), are sometimes used for their highly visible and symbolic impact. Although simple and relatively low cost, these methods are not effective, as weapons and component parts may still be serviceable and must therefore undergo a further process to ensure destruction.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "da0839e5-497d-42c7-898c-2ab1932a3854", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 38, - "Paragraph": "Destruction of ammunition and explosives IATG 10.10 shall serve as the basis for all destruction of ammunition and explosives activities. The following IMAS also cover the stockpile destruction of ammunition and explosives: IMAS 11.10: \u2018Stockpile Destruction\u2019; IMAS 11.20: \u2018Open Burning and Open Detonation (OBOD) Operations\u2019; IMAS 11.30: \u2018National Planning Guidelines\u2019. The EOD expert will select the method according to: Type and quantity of ammunition to be destroyed; Availability of qualified human resources; Location and type of destruction sites available; Distance from storage and destruction sites and accessibility; Financial resources available; Requisite equipment and materials available; Environmental impact. The most commonly used methods in DDR settings are open burning and open detonation. These are regarded as the easiest ways to destroy ammunition and often present the most cost-effective solution; they are also highly symbolic and can serve as effective mechanisms for building confidence in the DDR programme. Open burning is generally used for the destruction of propellants and pyrotechnic compositions and has the potential to cause significant environmental harm. Open detonation uses serviceable explosives as charges to destroy ammunition and requires a large cordon to ensure protection from the blast. This method is labour intensive and may not destroy all ammunition, requiring post-blast EOD clearance. The industrial-level destruction of ammunition and explosives combines the skills of production, mechanical, chemical and explosive engineering. It is a highly specialist occupation, and appropriate independent technical advice shall be taken during the planning phase if stockpile levels suggest that industrial destruction may be the safest, most environmentally friendly or most cost-effective option.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "9e5211c6-ecee-470e-bb09-cae26df1d8f8", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022", - "PageNum": null, - "Paragraph": "4.30 Reintegration Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 4. Guiding principles 4.1 Voluntary 4.2 People-centred 4.3 Gender responsive and inclusive 4.4 Conflict sensitive 4.5 Flexible, accountable and transparent 4.6 Nationally and locally owned 4.7 Regionally supported 4.8 Integrated 4.9 Well planned 5. Transitioning from reinsertion to reintegration 6. Approaches to supporting reintegration 6.1 Targeted individual reintegration support 6.2 Community-based reintegration support 6.3 Combined approaches 6.4 Information, counselling and referral system 7. Analysis and assessments for reintegration programming 7.1 Mainstreaming gender into analysis and assessments 7.2 Conflict and security analysis 7.3 Recovery and peacebuilding assessments 7.4 Reintegration assessments focused on members of armed forces and groups 7.5 Political assessments 7.6 Managing data collected in assessments 8. Planning and design 8.1 Participatory, inclusive and transparent planning 8.2 Planning for urban versus rural reintegration support 8.3 Linkages with planning for wider stabilization, recovery and peacebuilding 8.4 Design of reintegration programmes 9. Reintegration components 9.1 Economic reintegration 9.2 Social and psychosocial reintegration 9.3 Political reintegration Annex 1 Conflict and security analysis \u2013 possible questions Endnotes 4.30 Reintegration Summary The reintegration of ex-combatants and persons associated with armed forces and groups is a long-term process that takes place at the individual, family and community levels and has social, psychosocial, economic, political and security dimensions. In settings where DDR takes place, economies have often been affected by conflict, posing significant challenges to creating sustainable livelihoods for former combatants and other conflict-affected groups. Social and psychological issues linked to identity, trust, social networks, trauma, community acceptance, and reconciliation must be addressed to ensure violence prevention and lasting peace. In addition, empowering ex-combatants to take part in the political life and governance of their communities and state can bring forth a range of benefits, such as providing civilians with a voice to address any former or residual grievances in a socially constructive, non-violent manner. Without sustainable and comprehensive reintegration, former combatants may become further marginalized and vulnerable to re-recruitment into armed groups or engagement in criminal or gang activities. Reintegration support addresses these socio-economic challenges and builds resilience to re-recruitment and a return to violence, necessary to enhance security and to achieve lasting peace. As an important part of sustaining peace, reintegration support is provided as part of a DDR programme, or in the absence of such programmes, complementing DDR-related tools (such as community violence reduction) or following security sector reform in mission and non-mission settings. When reintegration support is preceded by the disarmament and demobilization phases of a DDR programme, efforts should be made to ensure a smooth transition between reinsertion and reintegration. When supported during ongoing conflict before peace agreements are negotiated and signed, the aim is to facilitate the sustainable reintegration of those leaving armed forces and groups whether designated as terrorist organizations by the UN Security Council, or not, and/or to contribute to dynamics that prevent further recruitment and sustain peace. Community-based reintegration plays an important role in these contexts, supporting communities of return, restoring social relations and preventing and/or mitigating perceptions of inequitable access to resources. In any case, reintegration support is provided through time-bound programmes that cannot match the breadth, depth or duration of the reintegration process, which is part of local, national and regional recovery and development. Therefore, careful analysis is required to design and implement the most strategic and pragmatic programme weighing the benefits and challenges of the different reintegration approaches (individually targeted or community assistance or their combination) and components (economic, social, psychosocial, political) with adequate sequencing and timing. Best practice demonstrates that reintegration support should consider both individual targeted support as well as community-based support. How much of each type of support depends on the context. A strong monitoring system is needed to continuously track if the approach or mix of approaches taken, and the components and intensity selected are yielding the desired effect. In cases where the latter is not evidenced, adaptive management tools must be implemented to redirect course towards expected results in a timely manner. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors, who will be supporting the reintegration process for much longer than the externally supported programme is crucial from the beginning. Planning for reintegration support should be based on a broad range of conflict- and gender- and age-sensitive assessments conducted with sufficient time to allow for careful programme design. One of the most important aspects in designing reintegration support programmes is to address the needs of ex-combatants and persons associated with armed forces and groups without turning them into a real or perceived privileged group within the community. The reintegration support should therefore be planned in such a manner as to avoid creating resentment and bitterness within wider communities or societies or putting a strain on a community\u2019s limited resources. While best practice has shown that every programme should include both individual and community components, the balance of these will depend on the context. Approaching reintegration support from a community-based perspective to more effectively implement programmes and prevent tensions from forming between ex-combatants and communities is key. To factor such complex interplay, comprehensively planning for reintegration support should be participatory, transparent and inclusive; taking account of the gender dimensions, differences between rural and urban settings; the rights of victims of crimes, and be linked to wider stabilization, recovery and peacebuilding. Reintegration programmes using individual approaches shall have eligibility criteria that are transparent, easily understood, unambiguous and verifiable. A long-term public information and strategic communications strategy to keep communities and former members of armed forces and groups appraised of the programme shall also be implemented before reintegration support begins and throughout the reintegration programme. Programmes should not only focus on economic support but also address social, psychosocial and political aspects of reintegration that strengthen individual and community resilience. At an individual level resilience refers to the ability to adapt, rebound and strengthen oneself in the face of adversity and risk. For DDR participants, and often for conflict-affected communities, it is the ability to overcome traumatic experiences, establish social networks, and avoid negative coping mechanisms (such as substance abuse), to regulate their nervous system, to adopt non-violent approaches to conflict resolution, and to resist re-recruitment or recruitment in criminal groups or gangs. At a community level, resilience can affect, and be affected by, economic, social, psychosocial, and political factors. Economically, DDR practitioners should recognize that providing vocational training alone will not help former members of armed forces and groups to gain employment unless these training programmes are linked to broader employment creation and/or support to entrepreneurship initiatives based on economic opportunity mapping, and complemented by social and psychosocial support. Socially, DDR practitioners should be aware that former members of armed forces and groups may experience stigmatization, psychosocial and physical health issues that may affect their ability to successfully reintegrate and thrive in their community. To address these issues, reconciliation initiatives, psychosocial support, and the strengthening of social support networks should be considered. Politically, reintegration support may be used to encourage the involvement and participation of former members of armed forces and groups in decision and policy-making processes. While aiding former armed groups to transform into political parties is beyond the scope of a reintegration programme, DDR practitioners may provide individuals and communities with civic and voter education, and information on civil and political rights. 1. Module scope and objectives The objective of this module is to provide DDR practitioners with guidance on reintegration support either as a component of a DDR programme or as part of a broader DDR process. The guidance on reintegration support is also applicable to ex-combatants and persons formerly associated with armed forces and groups during ongoing conflict, when downsizing of security forces occurs, and when appropriate, for persons formerly associated with armed groups designated as terrorist organizations by the United Nations Security Council, a regional body or a Member State (host State or donor) (see IDDRS 2.11 on The Legal Framework for UN DDR). The module provides specific programmatic guidance that complements IDDRS 2.40 on Reintegration as Part of Sustaining Peace. IDDRS 2.40 provides the overarching strategic guidance on reintegration as part of the UN Approach to DDR whereas IDDRS 4.30 provides programmatic guidance on reintegration as a component of a DDR programme or not. The guidance in this module is applicable to both mission and non-mission settings. Given the complexity of reintegration processes and the need for context-specific programmes, the guidance offered in this module is less prescriptive than in other IDDRS modules. The module provides guidance on reintegration approaches: targeted individual reintegration support, community-based reintegration support, and combined approaches. Guidance for each of these approaches is explored in detail in this module. Following discussion of the approaches to reintegration support and guidance on programme planning and design, the possible components of a reintegration programme are outlined, from economic, social/psychosocial, and political. The module also identifies linkages between reintegration support and wider stabilization, recovery and peacebuilding frameworks, and the women, peace and security (WPS) agenda. Reintegration support is at the center of the humanitarian-development-peace nexus and should be designed as a contribution to achieving the Sustainable Development Goals, in particular SDG 8 Promote sustained, inclusive and sustainable economic growth, full and productive employment and decent work for all, in reintegration settings, SDG 16 on Peace, Justice and Strong Institutions and SDG 16.1 Significantly reduce all forms of violence and related death rates everywhere. Reintegration support also has the potential to contribute to achieving other SDG targets including: 4.1 and 4.7 on education and promoting cultures of peace; 5.2 and 5.5 on preventing violence against women and girls and promoting women\u00b4s leadership and participation; 8.7 and 8.8 related to children associated with armed forces and groups and improving work place safety; SDG 10.2 on political, social and economic inclusion; and, finally, SDG 11.1, 11.2 and 11.7 on housing, transport and safe public spaces. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should,\u2019 \u2018may,\u2019 \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Reintegration is the process through which ex-combatants and persons formerly associated with armed forces and groups transition sustainably to live as civilian members of society in communities of their choice. Reintegration takes place at the individual, family and community levels and has social, psychosocial, economic, political, and security dimensions. Reintegration processes are part of local, national and regional recovery and development, with the international community playing a supporting role if requested. Where appropriate, dependants and host-community members may be provided with reintegration support. Reintegration support is made up by time-bound actions undertaken by all those actors assisting ex-combatants and persons formerly associated with armed forces and groups in their reintegration process. Reintegration support may encompass the creation of sustainable livelihoods for former combatants and conflict-affected groups, social and psychosocial services to increase acceptance, trust and reconciliation and empowering ex-combatants to take part in political life of their communities and country. Reintegration support may be provided as part of a reintegration programme when the pre-conditions for a DDR programme are in place or when these pre-conditions are not in place as part of a DDR process for members of armed groups who are not signatories of a Comprehensive Peace Agreement (CPA). Reintegration support is often provided through programmes funded by national budgets and/or voluntary contributions for a minimum of three years. In some settings, depending on the UN configuration and funding modalities, reintegration support and reinsertion assistance may not necessarily be distinguished and, according to local contexts, can be combined into a broader reintegration programme. A reintegration programme is designed to facilitate the ex-combatants and persons formerly associated with armed forces and groups\u2019 transition to live sustainably as civilian members of society in communities of their choice. However, because programmes are time bound and funding is limited, a reintegration programme cannot match the breadth, depth or duration of the reintegration process, nor the long-term recovery and development process. Therefore, careful analysis is required in order to design and implement a strategic and pragmatic reintegration programme that coherently links with broader stabilization and peacebuilding, paving the way for recovery and development. Developing such linkages, approaches and components with adequate and careful consideration for sequencing and timing is key. A strong monitoring system is needed to continuously track if the approach or mix of approaches taken and components selected and their intensity are yielding the desired effect. In cases where the latter is not evidenced, adaptive management tools must be implemented to redirect course towards expected results in a timely manner. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors who will be supporting the reintegration process for much longer than the externally assisted reintegration programme is therefore crucial from the beginning 3. Introduction Reintegration support can play an important role in sustaining peace (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Reintegration support as part of a DDR programme is often provided to large numbers of DDR participants and beneficiaries as part of the implementation of a CPA. However, even when no peace agreement has been negotiated or signed, reintegration support may still be provided as part of an integrated DDR process to those individuals who decide to leave armed forces and groups. Reintegration support may also complement broader security sector reform or DDR-related tools, such as community violence reduction (see IDDRS 2.30 on Community Violence Reduction and IDDRS 6.10 on DDR and Security Sector Reform). The reintegration of ex-combatants and persons formerly associated with armed forces and groups, whether male, female or with other gender identities, is often regarded as the most complicated component of DDR. Time-bound reintegration programmes cannot match the breadth, depth or duration of the reintegration process nor the longer-term local, national, and regional recovery and development process. However, they can play an important role in sustaining peace and in mitigating potential security challenges in fragile contexts. Careful assessment of conflict and security challenges, including the drivers of conflict and resolution (or lack thereof), combined with a robust understanding of the specific needs, concerns and capacities of male, female and non-binary ex-combatants and associated groups is essential to prevent further marginalization of DDR participants, to prevent and mitigate their re-recruitment into armed groups or engagement in gang or criminal activities. Former members of armed forces and groups may experience economic, social, psychosocial, and political challenges when returning to civilian life. Economic challenges are usually considerable, since economies may have collapsed after periods of violence and insecurity, posing significant challenges to the livelihoods of former members of armed forces and groups and other conflict-affected groups. Social and psychological issues of identity, trust, trauma, reconciliation and acceptance have been shown to be crucial for reintegration processes, especially when the use of violence has become normalized. In addition, the participation of ex-combatants and persons formerly associated with armed forces and groups in the political life of their communities and countries can be challenging for some, but can also produce a range of benefits, such as providing civilians with a voice to address any former or residual conflict-related grievances in a socially constructive, non-violent manner. Reintegration support addresses these socio-economic challenges and builds resilience to re-recruitment and a return to violence, necessary to enhance security and to achieve lasting peace. When tailored to address the particular needs of individuals, reintegration support can help former members of armed forces and groups to overcome these challenges and reduce the likelihood that they will return to their former group, join a new one, or enter a criminal organization. When reintegration support is expanded to whole communities and integrated into local and national development efforts, it can also help address the root causes of armed conflict and reduce the likelihood of first-time recruitment among civilian community members. Strengthening resilience is one of the most important aspects of supporting reintegration in both ongoing and post-conflict contexts. Resilience refers to the ability to adapt, rebound and strengthen functioning in the face of violence, extreme adversity and risk. For ex-combatants and persons formerly associated with armed forces and groups, it is related to the ability to withstand, resist and overcome the violence and potentially traumatic events experienced during armed conflict. Resilience also refers to the capacity to withstand the pressure to return to an armed life. The provision of reintegration support \u2013 such as psychological support and life skills, formal education and vocational training \u2013 can contribute to individual resilience. Community resilience can also be enhanced by reintegration support, such as when this support enhances the capacity of communities to absorb former members of armed forces and groups. This module recognizes the unique complexities of each reintegration programme context, and therefore, rather than offer prescriptive guidance, it provides a framework of approaches, which can be used according to the context. These include: targeted individual reintegration support, community-based reintegration support, and combined approaches. Guidance for each of these approaches is explored in detail in this module. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to reintegration. 4.1 Voluntary Participation in a reintegration programme as part of a DDR process shall be voluntary (See IDDRS 2.10 UN Approach to DDR). 4.2 People-centred 4.2.1 Unconditional release and protection of children Children who were recruited by armed groups may have experienced significant harm and have specific needs. Furthermore, children who joined or supported armed forces or groups may have done so under duress, coercion or manipulation. Children shall be considered primarily as victims, regardless of the nature of the armed groups. In the case of children who have been associated with armed forces or groups, the focus should be on creating an enabling environment for their reintegration and on ensuring their meaningful participation throughout the reintegration programme, addressing the trauma they have endured, highlighting their self-worth and ability to contribute to society and peace, and countering the drivers that resulted in their association with armed groups in the first place. In order to not create tensions or stigma, opportunities for reintegration support shall also be provided to other children in the area (i.e., those who did not join armed forces and groups). The following principles regarding reintegration support to children apply: Children shall be treated as children and, if they have been associated with armed forces or groups, as survivors of violations of their rights. They shall always be referred to as children. In any decision that affects children, the best interests of the child shall be a primary consideration. International legal standards pertaining to children shall be applied. States shall engage children\u2019s families to support rehabilitation and reintegration. See IDDRS 5.30 on Children and DDR for additional information and definitions. 4.2.2 In accordance with standards and principles of humanitarian assistance Reintegration support shall be planned, designed and implemented in close collaboration and complementarity with related humanitarian and developmental programmes. Effort shall also be made to ensure that serious violations of international law, including international human rights and humanitarian law, by ex-combatants and persons formerly associated with armed forces and groups are dealt with through appropriate national and international justice and accountability processes, as required (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Mechanisms shall be designed to ensure that if, during a reintegration programme, evidence emerges that a participant has committed serious violations of international law this shall be referred to the relevant authorities for further investigation to ensure full accountability. In addition, where relevant, community-based reintegration programmes shall explore opportunities to contribute to broader transitional justice and reconciliation processes and mechanisms, including by contributing to the recognition of the rights of victims, for example with respect to reparation. 4.3 Gender-responsive and inclusive Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN\u2019s involvement in reintegration support. Differences exist among the people who benefit from reintegration support \u2013 which include, but are not limited to, sex, age, class, religion, gender identity, and physical, intellectual, psychosocial and social capacities \u2013 all of which require specific responses. Reintegration programmes shall be planned, designed and implemented in a gender-sensitive manner, ensuring the meaningful participation of diverse population groups throughout the programme cycle. Gender-sensitive reintegration support includes planning based upon sex-disaggregated data so that programmes can identify the specific circumstances and motivations to join armed groups, as well as the needs, ambitions and potentials of women, men, boys, girls, and individuals with other gender identities. In cases where women have self-demobilized or been excluded from DDR programmes by commanders, efforts should be made to integrate them into the DDR process and provide them with access to reintegration support, if they so choose. Female-specific reintegration support may also be tailored to assist those women who may fear being identified as former members of an armed force or group due to the risk of stigmatization. Reintegration programmes shall be gender transformative, meaning the programme actively works to transform harmful, gender inequitable norms, into positive ones, and address power imbalances, at every stage of reintegration support. By transforming harmful, inequitable gender norms and values into positive ones, DDR practitioners can support countries and communities to increase gender equality, deconstruct violent or harmful versions of masculinities, promote and elevate women\u2019s role as leaders in their communities, prevent sexual violence and gender-based violence, transform negative beliefs, and improve the sexual and reproductive rights and health (SRHR) of all (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). DDR programmes provide unique opportunities to support such work and they have a mandate to do so. In order to implement gender-responsive and transformative reintegration programmes, UN and government DDR practitioners, implementing partners and other stakeholders may need to receive training in gender-sensitive approaches and good-practices, as well as other capacity development support. Public information and sensitization campaigns concerning reintegration support may also benefit from collaboration with women\u2019s and men\u2019s organizations to address gender-specific needs. Careful thought to deconstructing violent masculinities/male warrior roles and to depicting women, men, and persons of different gender identities and expressions as respected community members is one critical opportunity to integrate gender transformation (see IDDRS 4.60 on Public Information and Strategic Communications in Support of DDR). Thoughtful engagement and equal leadership opportunities in information, education and communication work also is a gender transformative approach. Monitoring and evaluation for reintegration programmes shall also include gender-related indicators. Where possible, gender-responsive budgets and careful tracking of spending and resource allocation on gender issues in reintegration programmes should be considered. For further information, see IDDRS 5.10 on Women, Gender and DDR. 4.4 Conflict sensitive A conflict-sensitive approach involves ensuring a sound understanding of the two-way interaction between activities and context, and acting to minimize the negative impacts and maximize the positive impacts of intervention on conflict, within an organization\u2019s given mandate. The first principle that is usually applied in a conflict-sensitive approach is do no harm; however, conflict sensitivity goes beyond this. To do no harm and to support local capacities for peace requires: An awareness of both the intended and unintended consequences of reintegration programming; Continuous analysis of the conflict context and the programme, examining how reintegration support interacts with the conflict; A willingness to adapt, create options and, if needed, redesign programmes to improve quality; Careful reflection on staff conduct and organizational policies, to ensure that the behaviour of individuals and organizations meets the highest standards of ethics and professionalism. Conflict analysis and risk mitigation measures shall be applied as key components of a conflict sensitivity approach, as well as integrated into monitoring and evaluation processes. 4.5 Flexible, accountable and transparent 4.5.1 Flexible, sustainable and transparent reintegration programmes and funding arrangements Reintegration support shall be context-specific and designed in a way that allows flexibility, tailored to specific circumstance. Reintegration programmes are funded by national budgets and/or voluntary contributions from donors. As it may be challenging to mobilize voluntary contributions (see section 8.4.6), funding arrangements shall remain flexible. \t 4.5.2 Accountability and transparency Reintegration programmes shall be based on the principles of accountability and transparency. Public information and communications strategies and policies shall therefore be drawn up and implemented as early as possible. Public information allows affected participants and beneficiary groups to receive accurate information on the principles and procedures of reintegration programmes. Relevant entities of the UN system shall also remain transparent vis-\u00e0-vis the Government and its institutions in regard to activities and plans in support of reintegration, particularly if not fully agreed upon in advance. 4.6 Nationally and locally owned The primary responsibility for the implementation of reintegration support or the implementation of reintegration programmes rests with the national authorities and their local institutions, with the UN playing a supporting role if requested. It is essential that DDR practitioners do not act as substitutes for national authorities in programme management and implementation. Instead, they shall ensure that reintegration programmes include provisions for the capacity building of national authorities in contexts where this is necessary. 4.7 Regionally supported In some contexts, there may be regional dimensions to reintegration support, such as cross-border flows of small arms and light weapons (SALW); trafficking in natural resources as a source of revenue; cross-border recruitment, including of children; and the repatriation and reintegration of foreign combatants in their countries of origin. The planning, design and implementation of a reintegration programme shall therefore consider the regional level in addition to the individual, community and national levels (see IDDRS 5.40 on Cross-Border Population Movements). 4.8 Integrated Reintegration programmes both influence and are affected by wider recovery, peacebuilding and state transformational processes. DDR practitioners engaged in supporting reintegration programmes shall therefore work to forge partnerships and to work collaboratively with line ministries, other programmes and stakeholders to achieve policy coherence, sectoral programme integration and UN inter-agency coordination. In addition, the use of technical working groups, donor forums and rapid response modalities shall be used to further integrate efforts in the area of reintegration support. 4.9 Well planned 4.9.1 Safety and security In some cases, it may not be safe for former members of armed forces and groups and their dependants to return to their home communities. This may be the case, for example, if armed forces and groups are still active in certain areas. Ex-combatants and persons formerly associated with armed forces and groups may fear retaliation by active armed forces and groups against themselves and their families. This possibility shall be monitored through a security and risk assessment (see section 7.4.3), and those affected shall be informed of the risks and appropriate responses should be provided to address the identified risks. 4.9.2 Planning, assessment, design, and monitoring and evaluation Well-planned reintegration processes shall assess and respond to the specific needs of its female and male and non-binary participants and beneficiaries, who might be children, youth, adults, elders, persons with chronic illnesses and/or persons with disabilities. Planning shall be conducted jointly with national institutions and in close collaboration with related humanitarian and development programmes and initiatives implemented by the government and by national and international organizations. Representatives of ex-combatants and persons formerly associated with armed forces and groups shall also participate meaningfully in this stage to ensure that their needs, concerns and capacities are taken into account. The monitoring and evaluation of a reintegration processes shall not be a one-off effort conducted in an institutional silo, but shall form part of joint assessments and planning. For more information, see section 8.4.5 and IDDRS 3.50 on Monitoring and Evaluation. Transitioning from reinsertion to reintegration When a DDR programme is in place, reintegration support typically follows short-term reinsertion assistance that is provided as part of demobilization (see IDDRS 4.20 on Demobilization). Reinsertion assistance is not intended to act as a substitute for reintegration support, as it is designed to provide former members of armed forces and groups, whether male, female or with other identities with transitional assistance to meet their immediate needs for a period of up to one year. There are many different ways in which reinsertion assistance can be provided, including cash-based transfers, vouchers, in-kind support, public works programmes, vocational training and/or income generating activities. Community Violence Reduction (CVR) may also be used as stop-gap reinsertion assistance at the community level, while reintegration support is still at the planning and/or resource mobilization stage (see IDDRS 2.30 on Community Violence Reduction). Those planning the reintegration component of a DDR programme shall work in tandem with those planning the disarmament and demobilization phases to ensure a smooth transition. For example, it shall be ensured that the reintegration programme has sufficient resources and capacity to absorb the groups to be demobilized for a minimum of 3 years. DDR practitioners should also carefully consider the transition from reinsertion to reintegration support, especially when moving from targeted individual assistance to community-based programming (see section 6). One possible approach is to gradually reduce individual assistance over time, while community-based support is gradually introduced. If reinsertion assistance is well designed, funded and implemented, it can demonstrate immediate peace dividends to communities and create conditions more conducive to reintegration programming. However, if reinsertion assistance is poorly designed, funded and implemented, it may negatively affect longer-term reintegration prospects. In mission settings with a DDR programme, peacekeeping budgets will cover up to one year of reinsertion assistance. In contrast, reintegration support will be provided through national budgets and/or voluntary contributions from donors. In these contexts, to the extent possible, reinsertion and reintegration support should be jointly planned to maximize efficiency and impact. In non-mission and special political mission (SPM) settings, reinsertion assistance and reintegration support are not necessarily distinguished because they are funded through national budgets and voluntary contributions to national programmes and UN agencies, programmes and funds\u2019 initiatives. They should therefore be planned and implemented as a single and continuous programme. Figure 1: Transition from reinsertion to reintegration When a DDR programme is not in place, reintegration support may still be provided as part of a DDR process, either as stand-alone assistance or in combination with CVR and other DDR-related tools (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In mission settings, CVR will be funded through the allocation of assessed contributions while reintegration support is funded through national budgets and voluntary contributions. DDR practitioners should therefore ensure that planning for both is linked. In non-mission settings, funding for both CVR and reintegration support will depend on the allocation of national budgets and/or voluntary contributions from donors. Therefore, in instances where CVR and support to community-based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme. Where appropriate, early elements of reintegration support can be part of CVR programming. 6. Approaches to supporting reintegration DDR practitioners shall employ a comprehensive approach to support the reintegration of ex-combatants and persons formerly associated with armed forces and groups, including: (1) targeted individual reintegration support, (2) community-based reintegration support, and (3) combined approaches. These approaches are not mutually exclusive. Rather, they can be used together, with appropriate timing and sequencing, in order to assist the reintegration process most effectively in a particular context. Support should always include both individual and community perspectives, however, the combination of these approaches depends on the context, including the political dynamics and institutional capacity on the ground. Reintegration support is likely to require a different approach in each situation, responding to specific needs and circumstances. Based on relevant data, and thorough analysis, DDR practitioners should support national partners and stakeholders to come to a consensus on what may be the most appropriate approach(es). 6.1 Targeted individual reintegration support Targeted individual reintegration support provides individuals with concrete assistance based on clear and verifiable eligibility criteria. Economic support is geared towards enhancing the employability of ex-combatants and persons formerly associated with armed forces and groups and their access to productive assets and opportunities. It may, for example, include cash assistance in the form of grants or loans, technical advice, or training and mentoring. Advice and follow-up usually aim to keep each individual focused on their plan and help him/her adapt to the changing environment. In addition, the assistance should include activities and means aiming to facilitate an individual\u2019s social reintegration, such as access to life or core work skills training and psychosocial assistance. Social and psychosocial reintegration support recognizes that individuals have undergone a conditioning or socialization to the use of violence, experienced and/or witnessed traumatic events, including sexual violence, that have led to nervous system dysregulation, often experienced shifts in gender roles and identities (including violent or militarized masculinities and femininities), and may use/abuse substances to cope with these experiences or their adjustment to civilian life. Reintegration support that is individually targeted may be provided as a continuation of individually targeted reinsertion assistance or may follow and build upon this support. Targeted individual reintegration support should ideally be needs-based to address specific issues related to literacy, disability, chronic illness, sexual violence recovery, discrimination, protection and/or psychosocial issues including those related to trauma. In this sense, targeted reintegration support is preferably provided based on the assessment of individual needs rather than the simple status as ex-combatant. It is important to note that some of these needs are not merely needs from a humanitarian perspective, but their fulfilment also helps individuals to more fully participate in society, engage in reconciliation processes, and take an active role in peacebuilding. 6.1.1 Considerations for targeted reintegration support Best practice demonstrates that reintegration support should include both individual targeted support as well as community-based support. How much of each type of support depends on the context. Armed groups may make individual reintegration support to their members a condition for agreeing to a peace process. If the provision of individual support has been included in a peace agreement, this should be adhered to, but should be complemented by community-based support as soon as possible. Targeted individual reintegration support is resource intensive and often faces significant operational challenges, which may impede its effective implementation. The effectiveness of individual targeting is conditional upon the existence of minimum security conditions, to be determined on a case by case basis, proper assessment and treatment of individual needs, and the existence of institutional capacities to deliver individual assistance and monitor status. In the absence of such conditions and capacities, targeted reintegration support risks providing generic support since assistance is based on the status of former combatants instead of a careful treatment of individual needs. It is therefore useful to identify the possible benefits and challenges of individually targeting (part of) reintegration support. Considering these pros and cons can ensure an informed decision-making process can take place which responds to the specific reintegration programme context. Benefits of individual targeted support to former members of armed forces and groups are: Offsetting the risks that individuals are or could become threats to the security of their community: If the needs of ex-combatants are not addressed in a timely manner, for example through individual case management and continuous accompaniment, these individuals may become a threat to the security of their communities or society as a whole. Individually targeted support can enable the identification of the specific needs of ex-combatants and persons formerly associated, in a gender, age and disability sensitive manner. Individual targeting allows analysing individual aspects which impact the reintegration process, such as motivations to join the armed group, perception of security, levels of education, social environment, psychosocial profile, socio-economic opportunities in areas of return and others, which are critical for the delivery of effective reintegration support. Individual targeted support can enable monitoring the impact of the reintegration through assessing personal needs on a regular basis; this can be achieved through case management where weekly/monthly contacts with the individuals receiving assistance take place or through interviews with community members, local leaders and relevant entities. Individual targeted support provide a clear measure for success, namely how many of the supported individuals returned to violence or reintegrated successfully in their families and communities. Challenges of a targeted individual support to former members of armed forces and groups are: Targeted individual assistance has the potential to encourage individuals to join armed forces and groups and commanders to allow their units to increase in size so that more members can benefit. This however may be addressed, for example, by adopting clear and unambiguous eligibility criteria, with clear cut-off dates and capping the number of individuals who are eligible for support (see section 6.1 in IDDRS 4.20 on Demobilization). Targeted individual assistance, especially where it is not accompanied with assistance to other conflict-affected groups, in contexts where there is no parallel community support, may contribute to feelings of resentment among community members and the broader population, seeing that ex-combatants receive support whereas victims and affected communities are left without assistance and/or reparation. Providing targeted economic support to ex-combatants may not always be the most effective way of dealing with the potential threat that former members of armed forces and groups may pose to the security of communities. Targeted economic assistance involves a higher risk that resources provided to support reintegration will be \u2018taxed\u2018 by the leadership of (former) armed forces and groups, similar risk applies to community-based reintegration in areas controlled by armed groups. In some circumstances, it is not practical or even possible for former members of armed forces and groups to be identified and verified, since their specific status is not always clear or undisputed. In other situations, ex-combatants and persons formerly associated with armed forces and groups may have spontaneously returned to their communities of origin or choice, making any official regrouping for verification counter-productive or dangerous. For e.g. former part-time combatants or those who played supporting roles in armed forces and groups, ex-female combatants and/or women formerly associated who more often return to communities without joining programmes to avoid more discrimination and stigmatization and those with disabilities and/or deemed unfit for combat after injury who may be left behind. There may be a risk of stigmatization or reprisal where former members of armed forces and groups are clearly identifiable as a result of the assistance. This is likely to apply to female combatants. Female ex-combatants and women formerly associated with armed forces and groups are often excluded by commanders and miss out on targeted individual reintegration support. In cases where targeted individual assistance reaches the family unit via a male ex-combatant, the utilization of the assistance may not always be in the best interests of the family unit as a whole. While there are benefits and challenges to using individual targeting, the biggest reason for using it is that it can effectively respond to the specific needs of DDR participants and when combined with community-based reintegration support it can provide a comprehensive approach to reintegration that supports the individual, family and community. 6.1.2 Cash in support of reintegration Cash-based transfers include cash; digital transfers, such as payments made to mobile phones (\u201cmobile money transfers\u201d); and value vouchers. Value vouchers \u2013 also known as gift cards or stamps \u2013 provide access to commodities for a given monetary amount and can often be used in predetermined locations, including selected shops. Public works programmes, or cash-for-work projects in agricultural and natural resource sectors in rural areas, also create temporary opportunities for former members of armed forces and groups to receive cash as part of a reinsertion package. When targeted individual support is to be included in a reintegration programme, cash-based transfers should be considered, as should synergies with cash-based transfers provided as part of transitional reinsertion assistance. For more detail on the pros and cons of cash-based transfers, refer to IDDRS 4.20 on Demobilization, section 7. Within an organized crime\u2013conflict context, DDR processes may also present the risk of reinforcing extortion schemes through the payment of cash/stipends to DDR participants as part of reinsertion assistance. Practitioners should consider the distribution of payments through the issuance of pre-paid cards, vouchers or digital transfers where possible, to reduce the risk that participants will be extorted by those engaged in criminal activities, including armed forces and groups (see Module 6.40 DDR and Organized Crime). 6.2 Community-based reintegration support Community-based reintegration (CBR) is an approach that empowers people within communities to identify, plan and implement programmes with support from governments and DDR practitioners. In contexts of ongoing conflict, limited institutional capacity and lack of resources, the implementation of CBR projects may be favoured in order to build community resilience and increase its capacity to absorb former combatants. Furthermore, where individual targeted support is provided, CBR activities should be implemented as a valuable addition, selecting communities which are hot spots, those which see large numbers of DDR participants returning, including formally demobilized or self-demobilized combatants, or where there is potential of recruitment of community members, among the self-demobilized individuals. CBR takes place at the community level and is community-owned, includes full community participation in decision-making processes, and focuses on the community as a whole rather than only pre-defined groups, which allows for a conflict-sensitive and inclusive approach to project identification. Within this approach, ex-combatants and persons formerly associated with armed forces and groups do not receive targeted individual support, but benefit from the same support provided to other members of the community. By empowering communities to take action and fulfil certain roles, this approach may allow delivering certain activities which would otherwise require the deployment of professional and experts external to the community. For instance, depending on local capacities, local peace and development committees and civil society organizations can engage with former combatants, persons formerly associated with armed forces and groups and their dependents and support their reintegration. CBR supports the capacity of the community to \u2018absorb\u2019 ex-combatants and persons formerly associated with armed forces and groups, whilst also attending to the needs of the overall community. Community members should define their own needs as part of a transparent, participatory process. CBR can, for example, include support to the rehabilitation of shared community goods, such as wells, classrooms, markets, bridges, health facilities, irrigation channels or other public infrastructure. It may also include psychosocial support and referral systems, employment centres, social skill building, conflict resolution mechanisms, or community associations that focus on engagement in civic life and civic responsibilities including voting. While an advantage of CBR is that assistance is provided to ex-combatants and persons formerly associated with armed forces and groups as members of the community, a disadvantage is that CBR may not directly address their specific ex-combatants' needs. When their specific needs are not addressed it can lead to resentment, disenfranchisement, and lead to re-recruitment and compromise sustainable peace. In addition, while CBR enables prioritization, the selection of the most relevant areas and communities for support may exclude and marginalize others, which in turn may also cause inter-communal resentment and fuel tensions, unintentionally cause harm and jeopardizing local peace. Strong conflict and security analysis is key to mitigate this risk. When considering a community-based reintegration approach, it is essential that DDR practitioners understand what other recovery and peacebuilding programmes may be addressing, including in the areas of reconciliation and transitional justice, including reparations, and natural resource management. Through meaningful community engagement, reintegration programmes will be better able to identify opportunities for ex-combatants, to address the harms and grievances affecting ex-combatants and victims, pinpoint potential stressors, identify priorities for victim and community recovery projects, and fully consider relevant transitional justice issues affecting victims and former members of armed forces and groups. However, while it is crucial to involve communities in the design and implementation of reintegration programmes, their capacities and commitment to encourage ex-combatants\u2019 reintegration should be carefully assessed. See 9.2.1 on Reconciliation in this module, and IDDRS Module 6.20 on DDR and Transitional Justice, and IDDRS Module 6.30 on DDR and Natural Resource Management. 6.2.1 Area-based interventions CBR support should be focused on specific communities or geographical areas that are likely to receive large numbers of ex-combatants and persons formerly associated with armed forces and groups. Area-based interventions should aim to use locally-based resources and to work closely with local businesses, civil society, local business development service provides and local investors. The networks and economic flows that affect (or could affect) the defined territory shall be considered. In conflict contexts, natural resource management is typically already a part of existing livelihoods and employment opportunities, in both formal and informal sectors. In area-based interventions there is a particularly unique opportunity to help improve sustainability and resiliency in these key livelihoods sectors including through partnership with both public and private businesses (see IDDRS Module 6.30 on DDR and Natural Resource Management). 6.2.2 Role of local peace and development committees Local peace and development committees (LPDCs) can play a pivotal role in CBR. These are structures at the level of a district, municipality, town or village, which aim to encourage and facilitate joint, inclusive decision-making on peace and development processes within the specific context. When LPDCs are composed of all key stakeholders of the community \u2013 relevant official and/or traditional authorities, civil society representatives such as victims\u2019, religious and women\u2019s organizations representatives, and the private sector \u2013 they increase legitimacy in the decision-making around community-based projects. However, oftentimes LPDC\u2019s do not include stakeholders of all members of the community, are not gender inclusive and, frequently, marginalized segments of society, including victims, women, ethnic and religious minorities, and male, female, and non-binary ex-combatants or persons formerly associated with armed forces and groups, are not represented. Therefore, DDR practitioners may need to work actively with LPDCs and community leaders to ensure projects defined by them have inclusive practices, which truly represent the needs of the community. UN-supported programmes also have a 20% minimum of support, which must be directed towards the specific needs of women and girls. Such committees or similar structures \u2013 if existing \u2013 should play a fundamental role during the consultation, planning and implementation of CBR approaches. For example, they should be empowered to identify the infrastructure that needs to be rehabilitated, or services that need to be offered or improved at the community level, as well as assist in the prioritization and/or selection of those groups (ex-combatants and persons formerly associated with armed forces and groups, displaced persons, female heads of households, persons with disabilities, youth at risk, etc.) to be employed in these projects and services. 6.3 Combined approaches Elements of CBR and individual targeting can be combined into one reintegration programme, using the approaches listed below. Every program should have a combination of individual and CBR approaches, however, the balance between those will be different depending on the context. \t 6.3.1 Dual targeting Providing reintegration support that simultaneously targets individual former members of armed forces and groups and members of their communities is known as dual targeting. An example is when a % of reintegration support is destined towards male, female and non-binary ex-combatants and persons formerly associated with armed forces and groups, the remaining % is destined towards conflict-affected community members. Proportions may vary according to the context. Experience has shown that targeting community members who have a similar profile to former members of armed forces and groups (such as unemployed youth), can have particularly positive results. Specific efforts should be made to include women and victims. As this approach involves targeting, the benefits and challenges listed above (in section 6.1.1) shall be assessed and considered during planning. 6.3.2 Community-focused actions co-led by former members of armed forces and groups Through consultation and dialogue with community and civil society leaders, former members of armed forces and groups, whether male, female or with other gender identities, can identify, lead and implement activities which are best suited to the community and to their own skill sets. Such activities can provide ex-combatants and persons formerly associated with armed forces and groups with a sense of ownership over the reintegration achievements that take place at the community level. These activities can also help to build rapport between former members of armed forces and groups and community members. 6.3.3 Focus on mid-level commanders In order to prevent mid-level commanders from becoming spoilers, reintegration programmes may have to devise assistance strategies that differ from those provided to the rank-and-file members of armed forces and groups. Such assistance strategies (sometimes known as \u201ccommander incentive programmes\u201d) must be informed by an assessment of the particular needs and interests of mid-level commanders, as well as by an in-depth understanding of the drivers that my lead them to in fact become spoilers. Strategies may include preparation for nominations/vetting for public appointments, redundancy payments based on years of services, and guidance on investment options, expanding a family business and creating employment. 6.4 Information, Counselling and Referral System Regardless of the balance of approaches utilized, an effective way to address the specific needs of individuals is the establishment of an Information, Counselling and Referral System (ICRS). An ICRS can store data not only on the reintegration intentions of ex-combatants and persons formerly associated with armed forces and groups, but on the available services and reintegration opportunities identified during the economic and labour market opportunity mapping, services mapping and capacity assessment outlined below (see sections 7.1.2 and 7.1.3). It can equally therefore serve community members when using community-based approaches or dual targeting. ICRS caseworkers should be trained in basic counselling techniques and refer those participating in the reintegration programme to services/opportunities including peacebuilding and recovery programmes, governmental services, potential employers and community-based support structures. Counselling involves the identification of individual needs and capabilities, and may lead to a wide variety of referrals, ranging from job placement to psychosocial assistance to voluntary testing for HIV/AIDS (see IDDRS 5.60 on HIV/AIDS and DDR). An ICRS may also be used to compile data on the recipients of reintegration support that is then used for monitoring and evaluation. Particularly when no entitlement-based economic assistance is being provided as part of a reintegration programme, an ICRS can play a crucial role. For further information on case management and an ICRS, see section 6.8 in IDDRS 4.20 on Demobilization. 7. Analysis and assessments for reintegration programming Reintegration support should be based on a broad set of reliable conflict- and gender-sensitive assessments. These assessments should be conducted 9 \u2013 12 months before the disarmament and demobilization phases of a DDR programme in order to allow adequate time for programme planning and design. The information should be revised and updated following the profiling of individuals during the demobilization phase, based on new data concerning areas of return, ages/gender, level of education and skills. The individual profiling should be contrasted with socio-economic assessment, serving as the basis for the design of projects based on individual needs and expectations as well as market dynamics and economic opportunities in the communities of return. These same assessments should also be conducted as early as possible when reintegration support is expected to follow DDR-related tools (such as CVR) or be provided as stand-alone support. All assessments shall be disaggregated by sex and age, and include data on specific sub-groups such as foreign combatants, persons with chronic illnesses and persons with disabilities. Assessments should also be regularly updated and, where possible, conducted jointly with other relevant stakeholders. At a minimum, assessments should answer the basic list of key reintegration planning questions outlined in Box 1 below. The questions in Box 1 below should be comprehensively answered and constantly reappraised during the planning and implementation of reintegration programming as this will help to enhance the programme\u2019s strategy and resource allocation. Those involved in the negotiation, planning and design of reintegration programmes shall also be aware of existing policies, strategies and frameworks on reintegration and recovery to ensure adequate coordination. Opportunities to link reintegration programming to wider programming shall be carefully assessed. Partnerships with institutions and agencies leading related programming should be sought to ensure the most effective use of resources, ensure complementarity and to avoid duplication. The information collected during the disarmament and demobilization phases, in particular profiling, will inform reintegration programming. In a similar manner, many of the assessments conducted to inform the design of reinsertion assistance and CVR programmes (if applicable) will be relevant to programming for reintegration support and should be consulted, such as: a conflict and security analysis; economic opportunity mapping, including labour market analysis (including private sector analysis) and review of the local economy\u2019s capacity to absorb cash inflation (if cash-based transfers are being considered); gender analysis; feasibility studies; and assessments of the capacity of potential implementing partners. For further information on these assessments, see IDDRS 2.30 on Community Violence Reduction, IDDRS 3.11 on Integrated Assessments and IDDRS 4.20 on Demobilization. 7.1 Mainstreaming gender into analysis and assessments The planning and design of reintegration processes shall be based on the collection of data disaggregated by sex and shall ensure the inclusive and meaningful participation of diverse stakeholders. The gathering of gender-sensitive data will elucidate the unique and varying needs, capacities, interests, priorities, power relations and roles of women, men, boys, girls and non-binary individuals. The overall objective of integrating gender into analysis is to build efficiency and equity into reintegration programmes. By taking a more gender-sensitive approach from the start, these programmes can make more informed decisions and take action to ensure that women, men, boys, girls and non-binary individuals equally benefit from reintegration opportunities. In both conflict-affected and peaceful environments, violent masculinities and femininities are shaped by socially constructed and perpetuated norms related to the use of violence. Understanding the motives for violence, social influences, and socialization into the use of violence is necessary so that reintegration programmes can be designed to identify and break the patterns that increase the likelihood of falling victim to and/or perpetrating violence. When planning for reintegration support, DDR practitioners should consider how gender roles may be renegotiated and how different population groups may participate equally in all programming. DDR practitioners should also identify entry points for improving the overall gender-responsiveness of reintegration programming, thereby improving resilience and helping to prevent the resumption of violence. For more information on gender-sensitive programming, see IDDRS 5.10 on Women, Gender and DDR. 7.2 Conflict and security analysis The nature of the conflict influences the objectives and expected results of DDR, including the type of reintegration support that is required. Conflict and security analysis shall be conducted in order to clarify the nature and drivers of the conflict, how it was resolved (if resolved at all), and to identify any potential social, economic or political challenges related to reintegration. An early conflict and security analysis, which includes information on available dispute mechanisms, will assist DDR practitioners to identify the impact, availability and effectiveness of land and property dispute mechanisms. This analysis can also provide critical information on the structure of armed groups, how former members of armed forces and groups are perceived by their communities (i.e., as heroes who defended their communities or as perpetrators of violent acts and human rights violations/abuses), and what expectations former members of armed forces and groups may have. Table 1 provides a list of questions that, at a minimum, should be considered as part of a conflict and security analysis. DDR practitioners may also consult the United Nations Development Group Conflict and Development Analysis Tool, which provides an agency-neutral approach to conflict analysis as an integral part of the UN Sustainable Development Cooperation Framework (formerly the UN Development Assistance Framework). Table 1: Conflict and Security Analysis \u2013 Possible Questions 7.3 Recovery and peacebuilding assessments (RPBAs) An RPBA offers a standardized and internationally recognized approach to support Governments to identify the requirements for immediate and medium-term recovery and peacebuilding. RPBAs lay the foundation for the elaboration of a longer-term recovery and peacebuilding strategy and serve as a platform for joint analysis and planning. An RPBA typically produces an agreed upon strategic, prioritized and sequenced recovery and peacebuilding plan, a results matrix, and proposals for implementation and financing arrangements. DDR practitioners should endeavour to introduce reintegration support into all necessary dimensions \u2013 economic, social/psychosocial and political \u2013 of RPBAs, in countries where these assessments are being conducted. 7.4 Reintegration assessments focused on members of armed forces and groups 7.4.1 Early profiling and pre-registration surveys Planning for reintegration support should be informed by an analysis of the preferences and needs of male, female and non-binary ex-combatants and persons formerly associated with armed forces and groups. When feasible, surveys should be conducted with a random and representative sample of members of armed forces and groups. The disarmament and demobilization phases constitute a key opportunity to compile useful information, before individuals return to host communities. The information compiled can be contrasted with socio-economic assessment and guide the design of reintegration programming. interviews and surveys will establish the nature and size of the armed forces and groups for which reintegration support is to be designed. They should include information on the demographics of armed groups as well as the aspirations of their members and the areas they would like to go (or return) to. A minimum set of questions to be included in this survey can be found in Annex 1. Where possible, surveys should be supplemented by conflict\u2013sensitive data on specific needs groups and additional research on the socio-economic, political and historical setting should be conducted, where possible, by scholars from the country or region. The collection of this data provides baseline information for the planning and design of a monitoring and evaluation plan. Early profiling and pre-registration surveys shall consider gender-sensitive procedures, so that women, men, boys, girls and non-binary individuals are able to accurately state their involvement and needs and other relevant information. 7.4.2 Full profiling and registration If reintegration support is provided as part of a DDR programme, then profiling and registration data collected during disarmament and demobilization should also be used (see section 6.3 in IDDRS 4.20 on Demobilization). However, as this data can be gathered relatively late, is it better suited for making adjustments to the reintegration programme rather than for initial planning purposes. 7.4.3 Identification and assessment of (potential) areas of return and resettlement The areas that former members of armed forces and groups may wish to return to will be identified using the aforementioned survey and/or profiling exercise. Once identified, the opportunities and constraints for reintegration in these areas shall be assessed. This assessment should take place as early as possible and, at a minimum, should include: A risk and security assessment; Community perception surveys; Economic opportunity mapping; Social, psychosocial, and political opportunity mapping; and Services mapping and institutional capacity assessment. These assessments should also be used as an opportunity to begin the process of sensitizing community members to the reintegration process. Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of reintegration programmes and to identify threats to the reintegration programme, its participants and beneficiaries, as well as DDR practitioners supporting the programme. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken) that corresponds to the tolerable risk. Risks related to women, youth, children, dependants, and other specific-needs groups should also be considered. The risks associated with reintegration support may include: Former members of armed forces and groups may be reluctant to return to their home areas and participate in reintegration processes if these areas are still occupied by active members of their former group. This is because they may face retaliation, either against themselves or their family members, and/or social exclusion or targeting. This is particularly likely if those who have left are perceived as traitors by those who remain. If multiple armed groups are active, individuals may participate in a reintegration programme, only to then re-join an armed force or group (either their previous group or a new one), or a local criminal network; If former members of armed forces and groups are regarded as perpetrators of violent acts, community members may stigmatize and refuse to accept these individuals; When reintegration support is provided to a particular community or area as part of a CBR programme, this may create a backlash among communities/areas that are not recipients of such support; If CBR support is being provided in a conflict-affected country, this community may be drawn into ongoing conflict; CBR support may be inadvertently provided to communities that remain supportive of active armed forces or groups; If appropriate safeguards are not in place, reintegration support that is targeted towards individual ex-combatants and persons associated with armed forces and groups may be used by participants in the reintegration programme for purposes other than which it was intended, i.e., to feed the war and/or criminal economy. These risks shall be identified, assessed, monitored and mitigated. They shall also be balanced against the opportunities that reintegration support may create in working towards a peaceful solution to conflict. Questions that DDR practitioners should consider in this regard are outlined in Table 2. Table 2: Balancing risks and opportunities If reintegration support is being provided in settings of ongoing armed conflict where no DDR programme is in place, DDR practitioners shall seek to identify positive entry points for pilot reintegration programmes, such as pockets of peace not affected by military operations or other types of armed violence (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In these contexts, supporting reintegration will be more challenging and rapid, reliable and integrated assessments are particularly important. If no framework for reintegration support is in place, then targeted reintegration support (see section 6.1) shall not be provided. Breaking out of silos and acting as One UN is particularly important as uncoordinated efforts could fuel conflict. In the event that ongoing conflict means that reintegration support is too risky and/or not operationally feasible, alternative means of support should be considered. Community perception surveys Communities are not homogeneous entities and different individuals within the same community may have different opinions towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may see members of armed forces and groups as victims of political actors while others may simply be happy to be reunited with family members. Community perception surveys shall be used to assess the strength of support for (or opposition to) the reintegration of former members of armed forces and groups in particular communities, and the various options and modalities through which this can be achieved. These surveys shall also be used to ensure that reintegration programming is tailored to the needs and desires of particular communities. Surveys may also be used to design appropriate strategic communication campaigns with the view of mitigating the negative impact of misinformation and disinformation and to transform attitudes in communities in such a way that it is conducive to safe and sustainable reintegration (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Community perception surveys shall consider a range of processes that facilitate and encourage participation and ensure that the views of vulnerable or marginalized groups, and groups who are at risk of discrimination, are adequately represented. This may, for example, require specific attention to victims, ethnic and religious minorities, women, youth, non-binary individuals etc. .Where cultural barriers exist, such as the need to have female surveyors to survey female-identified community members, pre-planning is undertaken to ensure the proper human and financial resources are available to make this possible. Wherever possible, community perception surveys should be carried out by local institutions and/or civil society. Community members should be given the opportunity to freely express themselves, during interviews or focus groups. However, caution should be taken to ensure that expectations concerning the reintegration programme are not raised beyond a point that is realistically achievable. All data collected shall be disaggregated at least by sex, age, ethnicity and disability. Economic opportunity mapping DDR practitioners should participate, where possible, in developing a systematic, countrywide mapping that identifies existing and potential income generating opportunities and that builds upon RPBAs (see section 7.3). Collaboration, complementarity and join programming with development agencies and their monitoring activities is essential to this process. This mapping shall include an analysis of the functioning of: Markets (labour, capital, goods and services, supply and demand, etc.); Input factors (land, water, agricultural inputs, energy resources, infrastructure, technology and information etc.), including how inequities in the distribution of these factors may have played a part as a driver of conflict and/or existing grievances among communities; and Supporting factors (institutional capacity in formal and informal economies, financial markets etc.) Risk factors (security, sustainability, feasibility, etc) The analysis shall also capture: The overall economic situation of the country and of the areas where reintegration will take place; The sectors in which people are involved, the main occupations of the people in the areas where reintegration will take place, and whether these sectors/occupations present opportunities for former members of armed forces and groups; The most dynamic (or potentially dynamic) economic sectors with growth potential and the inputs required to make these sectors more efficient and equitable; The market-driven economic opportunities available to former members of armed forces and groups given their existing skill sets, and potential for the development and targeting of these skills sets towards employability; The potential for public-private partnerships; The existing infrastructure and services that allow economic activity to take place (for e.g., roads, communications, electricity supplies) and whether there is an opportunity for former members of armed forces and groups to work on infrastructure development; The bottlenecks that prohibit value chain development locally, regionally or internationally (i.e., quantity produced, scarcity of resources, quality standards, transportation and access to markets, market information, government export regulations, importer regulations, etc.); The existence of other recovery and development initiatives and possible linkages to these initiatives; The security situation; Potential financial service providers or training institutions available to support self-employment; Existing public employment services and labour market programmes, including job search assistance and matching services, labour market information, self-employment and entrepreneurship support, public employment programmes, subsidized employment through wage and/or hiring subsidies; Existing social assistance programmes such as unemployment benefits/allowances, transport and housing support; Access and cultural relationships to land and other natural resources; Historical access to employment and labour market opportunities and any associated tensions; Education and training possibilities; Micro-credit services (in contexts where they exist) and other employment and business development services (i.e., technical advisory, information and career guidance/counselling services). Other development programmes (both existing and planned) within the national recovery effort, as well as those planned by international development organizations. Political dynamics, including formal and informal leadership, power structures, relationships and group dynamics within receiving communities and among those who return; Regional dynamics; Throughout this mapping exercise, consideration shall be given to the specific needs, capacities and experiences of diverse population groups. Local and traditional knowledge related to the ownership of land, resource use, and the management of natural resources (including agricultural practices in cultivation, animal husbandry, rangelands and fishing rights) should also be gathered. Social, psychosocial and political opportunity mapping DDR practitioners should participate, where possible, in developing a systematic, countrywide mapping that identifies existing and potential social, psychosocial and political opportunity mapping with due consideration of the following: Mental Health and Psychosocial Support services in urban and rural areas where the reintegration programme will take place as well as services available at the national level. Organizations or Government programmes providing life skill building in conflict resolution, civic education including voter rights and political engagement, interpersonal skills, social and emotional intelligence, nervous system regulation, mental health literacy, self-value and self-respect, critical thinking, problem solving and decision making, basic financial management Organizations or Government programmes providing awareness raising or behaviour change programmes in reproductive health, gender equality, gender identities, transforming harmful cultural norms, sexual and/or gender-based violence prevention, etc. Health services for sexual violence recovery, reproductive health including STIs, maternal health, and HIV/AIDS Social support services for people living with HIV/AIDS, trauma and drug abuse counselling and/or disability rehabilitation services. Services mapping and capacity assessment The capacity of government, civil society entities and service providers constitutes one of the most important aspects of successful reintegration support. It is therefore essential to collect data on levels of institutional capacities to ensure adequate funding for capacity development. Institutional capacity assessments shall start as early as possible with an analysis of potential service providers, such as public and private vocational centers, business development services, relevant line ministries and NGOs, including organizational practices and absorption capacities. 7.5 Political assessments As support to political reintegration may form part of a reintegration programme, DDR practitioners should understand the political and historical context, the structures and motivations of armed forces and groups, barriers to political participation, and how the way the conflict ended may affect political dynamics. For more detail on how to conduct these assessments, see section 5 in IDDRS 2.20 on The Politics of DDR. 7.6 Managing data collected in assessments A management information system (MIS) is essential to capture, store, access and manage information on former members of armed forces and groups, communities of return, and available opportunities for training, education and (self)employment. An MIS also provides data for monitoring, feedback and evaluation and informs ongoing decision-making regarding programme adjustments. DDR practitioners shall consider the design and maintenance of an MIS, such as the generic Disarmament, Demobilization, Reintegration and Arms Management (DREAM) system, that can be adapted to the needs of each reintegration programme. \tData on former members of armed forces and groups should be captured in an MIS prior to the start of reintegration support activities. The design and construction of the MIS should capture data that can be used to build a profile of each participant. The collection of sex, age, ethnicity and disability disaggregated data, including information on specific needs, is essential. The data in the MIS should also be easy to aggregate in order to provide regular updates for broad indicators. The use of biometric identification as part of an MIS can minimize \u2018double dipping,\u2019 particularly when cash is being provided. If the reintegration programme also has an ICRS (see section 6.3.4), this should be closely linked to the MIS. Data collection and management requires robust data protection mechanisms and procedures, compliant with applicable requirements of privacy and confidentiality. Information that identifies individuals or discloses an individual\u2019s personal characteristics should not be made public as a result of data dissemination. When personal data is released, this should only be done with the permission of the individual concerned or their appropriate representative. 8. Planning and design Planning for reintegration support shall be based on the aforementioned assessments. DDR practitioners should support Governments and national stakeholders to make decisions concerning the balance of reintegration approaches to be taken (i.e., targeted individual reintegration support, CBR or a combination of approaches). The advantages and disadvantages of different approaches shall be carefully weighed and mitigation measures (when risks are involved) shall be developed. Technical working groups may be formed to prepare proposals regarding the possible mix and balance of various reintegration approaches. Possible financial requirements should also be discussed. 8.1 Participatory, inclusive and transparent planning Planning for reintegration support shall involve a broad range of stakeholders. A participatory, inclusive and transparent approach to planning will significantly improve the reintegration programme by: Providing a forum for testing ideas that could improve programme design; Enabling the development of strategies that respond to local realities and needs; Providing a sense of empowerment and agency; Providing a forum for impartial information in the case of disputes or misperceptions about the programme; Ensuring local ownership; Encouraging reintegration support and other processes, such as peacebuilding and economic recovery, to work together and be mutually reinforcing; Encouraging communication and negotiation among stakeholders to reduce fear and to enhance reconciliation, trust and human security; Recognizing and supporting the capacity and voices of youth, women and persons with disabilities and/or chronic illnesses; and Recognizing new and evolving roles for women in society, especially in non-traditional areas such as security-related matters. Building respect for the rights of marginalized and specific needs groups; and Helping to ensure the sustainability of reintegration processes by developing the capacity of the community to provide services and establish community monitoring, management and oversight structures and systems. DDR practitioners involved in the planning of reintegration support should ensure that participatory planning includes: Representatives from the national DDR commission (if one exists); Representatives from the national government (including relevant line ministries and local government); Representatives from the private sector; Employers and workers organizations; Representatives from the armed forces and groups, including their leadership and membership: This engagement will help to ensure that the range of expectations (of leaders, of mid-level commanders and the rank and file) are, where possible, met in the programme design; Community members: Ultimately it is communities that will, or will not, accept former members of armed forces and groups. Through community engagement, DDR practitioners will be better able to support the Government to identify opportunities for ex-combatants and persons formerly associated with armed forces and groups; to pinpoint potential obstacles to reintegration; and to identify priorities for community recovery projects. Families, traditional and religious leaders, women\u2019s/men\u2019s/youth groups, organisations of persons with disabilities and other local associations should be consulted, and provided with support and training that allows them to actively participate in the planning process. 8.2 Planning for urban versus rural reintegration support When planning for reintegration support, the inherent differences between reintegration in urban and rural contexts shall be taken into account. Each bring their own opportunities and challenges. Reintegration support in urban areas can benefit from access to a wider range of services (e.g. schools, health clinics, jobs, security), whereas in rural areas, former members of armed forces and groups may have access to arable land and a supportive social network. Although former members of armed forces and groups may find a job in the urban informal sector, it is often much harder to obtain employment in the urban formal sector because labour market competition is high and limited formal jobs are available. Access to formal jobs may also be hindered if former members of armed forces and groups have low skill and education levels and a lack of prior work experience. This is likely to be the case for individuals who joined armed forces and groups at a young age. Female ex-combatants and women formerly associated with armed forces and groups also tend to face greater difficulties entering formal labour markets because of a return to pre-conflict labour patterns, and because women are often associated only with informal work. Male, female and non-binary DDR participants may also not have the same familial support networks in urban areas, particularly if they have chosen to resettle in an urban area rather than return home to a rural one. There may be many different reasons for this choice, for example, it may be difficult for ex-combatants to return home if they previously perpetrated violence against their community, or if their former armed group is still active in their home area. Cities may be appealing precisely because their higher population density means that ex-combatants find it easier to go unnoticed and to hide their ex-combatant identity. The skills that former members of armed forces and groups have, and may have gained during their group membership, may also have greater relevance and market value in urban settings than rural ones (for example, private security, mechanics, driving etc.). 8.3 Linkages with planning for wider stabilization, recovery and peacebuilding In order to support the humanitarian-development-peace nexus, reintegration programme coordination should extend to broader strategies and actors. Reintegration programmes shall be conceptualized, planned, designed and implemented as part of, or at least in close coordination with, wider stabilization, recovery and peacebuilding strategies. Linkages shall include, but not be limited to human rights promotion, transitional justice and reconciliation efforts (see IDDRS 6.20 on DDR and Transitional Justice), the resettlement of displaced populations and durable solutions to displacement, improved governance and security sector reform. To achieve coherence, when designing reintegration processes, UN practitioners should coordinate and, where possible, jointly plan programmes with actors working in these areas. In addition to former members of armed forces and groups, other conflict-affected groups (such as IDPs and refugees) may also be returning to the community. These groups are supported by a number of different UN agencies. From the earliest assessments and through all stages of strategy development, programme planning and implementation, information on the number and profile of individuals being supported should be shared. The use of Memoranda of Understanding between different agencies intervening in the same sector on the same issue is also an efficient means of establishing the terms of coordination and joint programming efforts. DDR practitioners shall also ensure that relevant recovery and development frameworks are identified and guide their programmes, with specific attention to national recovery /development plans and poverty reduction strategy papers, the UN Sustainable Development Cooperation Framework (formerly the UN Development Assistance Framework), and the UN Policy for Post-Conflict Employment Creation, Income Generation and Reintegration. This is vital to ensure that reintegration programming is linked to peacebuilding, transition, recovery and reconstruction strategies and that it will facilitate the involvement of the various UN and other international agencies. While all efforts shall be made to coordinate closely with other actors implementing related programmes, DDR practitioners should also clearly identify those objectives that the reintegration programme can deal with directly, and those to which it can only contribute. If national and sectoral frameworks and policies are at the planning stage, DDR managers should ensure that DDR practitioners engaged in the planning of reintegration programmes: Network with coordinating and participating agencies. Participate and provide inputs in wider recovery planning meetings and assessment missions. Ensure that the reintegration of ex-combatants and persons formerly associated with armed forces and groups is adequately reflected in key national and sectoral frameworks and policy documents. If national and sectoral frameworks and policies are at the implementation stage, DDR practitioners engaged in reintegration programmes should ensure that they: Continue to participate in wider recovery coordination meetings to identify areas for collaboration and partnership, including through strong local, national and international partnerships. Place reintegration programmes and plans of action within relevant national and sectoral frameworks and policies. Use the opportunities offered by reintegration programmes to provide concrete contributions towards the implementation of national and sectoral frameworks and policies. 8.4 Design of reintegration programmes A well-designed reintegration programme shall enhance basic security and support wider recovery and development efforts. When designing a reintegration programme, DDR practitioners should define strategies to address the following minimum elements: 8.4.1 Eligibility criteria If reintegration support is provided as part of a DDR programme, the eligibility criteria established for reintegration may be broader than for disarmament and demobilization. Combatants and persons associated with armed groups carrying weapons and ammunition shall participate in disarmament (see IDDRS 4.10 on Disarmament). In addition to these groups, all other unarmed individuals considered members of an armed force or group shall participate in demobilization. Reintegration should be provided not only to ex-combatants, but also to persons formerly associated with armed forces and groups, including women and children among these categories and, where appropriate, dependants and host community members. When the preconditions for a DDR programme are not present, or when combatants are ineligible to participate in DDR programmes, eligibility for reintegration support shall be decided by relevant national and local authorities, with support, where appropriate from relevant UN mission entities as well as UN agencies, programmes and funds. Eligibility for reintegration support in such cases should also take into account ex-combatants and persons formerly associated with armed forces and groups, including women, and, where appropriate, dependants and host community members. Children associated or formerly associated with armed groups should always be encouraged to participate in DDR processes with no eligibility limitations (see IDDRS 5.20 on Children and DDR). If potential participants in reintegration programmes are to receive individually targeted assistance, they shall be screened in order to establish their eligibility. If a DDR programme is in place, screening should take place as part of a prior demobilization process (see IDDRS 4.20 on Demobilization). If evidence emerges to suggest that a particular recipient of individually targeted reintegration support has committed serious violations of human rights and/or serious crimes, including a terrorist offence, legal advice shall be sought for possible referral to competent entities for further investigation and potential prosecution. In accordance with national laws and international obligations, judicial entities may determine applicable sanctions, including exclusion from the reintegration programme, loss of certain access to assistance and/or participation in truth-seeking and reparation programmes. For more information on screening, refer to IDDRS 2.11 The Legal Framework for DDR and IDDRS 6.20 on DDR and Transitional Justice. 8.4.2 Public information and community sensitization Reintegration programmes should include a long-term public information campaign to keep communities and former members of armed forces and groups appraised of the reintegration strategy, approach, timetable and resources available. Communication strategies should also integrate broader reconciliation and peacebuilding messages, as well as both support non-violent and gender equitable identities (see IDDRS 4.60 on Public Information and Strategic Communication as well as 5.10 on Women, Gender and DDR). Public information and communication strategies and policies shall be drawn up and implemented as early as possible. For more information on how to plan, design and implement public information campaigns, see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. 8.4.3 Capacity development Reintegration programmes shall include steps to develop the capacity of national institutions, line ministries, training institutions and service providers through training in institutional development, financial management, and other technical and material assistance. This will help to ensure that the reintegration programme can be nationally owned and led, once external assistance has come to an end. Support should also be given to communities to (re)establish local forums and consultative committees that form the basis of decision-making processes that define and shape the focus of local reintegration support, and provide community oversight and ownership. Capacity building should not be limited to training and other avenues, such as on-the-job training, should be explored. 8.4.4 Programme exit strategy The reintegration of former members of armed forces and groups is inherently linked to long-term recovery and development processes. Therefore, externally-supported reintegration programmes should be transferred to and sustained by national institutions. To ensure that this transition runs smoothly, DDR practitioners responsible for the management of reintegration programmes shall outline a sustainability and exit strategy during initial planning, focusing on the transition between reintegration support and violence prevention, wider recovery efforts, peacebuilding, institution building and development processes. 8.4.5 Monitoring and evaluation Monitoring and evaluation for reintegration programmes has often been conducted within programme silos. As a result, it is difficult to systematically compare what happens within a reintegration programme with related programmes, including broader humanitarian, peace and development initiatives. An integrated approach to developing metrics should be considered and consolidated into higher level collectively defined reintegration outcomes. A standardized framework of core reintegration metrics can help to produce a much larger evidence base, and enhance opportunities for collective learning that feed directly into short iterative planning cycles and contribute to ongoing outcome and impact monitoring. Core reintegration metrics should capture the perspectives of the recipients of reintegration (and other related) support. For further information, see IDDRS 3.50 on Monitoring and Evaluation. 8.4.6 Resource mobilization The scope, commencement and timeframe of reintegration programmes are subject to funding availability. Implementation can be delayed as a result of the late mobilization or disbursement of funds. Resolution A/C.5/59/L.53 of the Fifth Committee of the UN General Assembly formally endorsed the financing of staffing and operational costs for disarmament and demobilization (including reinsertion activities), which allows the use of the assessed budget for DDR during peacekeeping activities. However, funding for reintegration programmes must still be mobilized from voluntary contributions. Due to the challenges faced when mobilizing resources, it is essential that funding arrangements remain flexible. For example, when DDR programmes are in place, past experience shows that a strict separation of funds for different programme components (i.e., for reintegration support only) reinforces an artificial separation between the different phases of DDR. Cooperation with interventions run by bilateral donors may help to fill this gap. Finally, ensuring that budgets are gender-sensitive is an important accountability tool for the UN system internally, as well as for the host country and population. For further information on funding and resource mobilization, see IDDRS 3.41 on Budgeting DDR. 9. Reintegration components Reintegration support should not only focus on job creation, but should focus on the many different ways through which individual and community resilience can be strengthened. Experience at the international level shows that programmes delivered in an integrated manner and as a package combining job search assistance, active labour market support, as well as social and/or political assistance are more likely to be successful. 9.1 Economic reintegration Employment can contribute to peace by increasing social contact between different groups, by increasing the opportunity costs of engaging in violence, and by addressing the grievances that often arise from precarious work in exploitative conditions. Ex-combatants in many contexts have also consistently identified an alternative livelihood and the ability to generate income as key factors in their successful reintegration. Many have also indicated that being able to provide for their family is particularly important in establishing their sense of identity, the level of respect they receive in communities, and to ensuring self-esteem. Armed conflict often has severe implications for the availability of paid employment and the quality of jobs available. Armed conflict and persistent insecurity discourage foreign and domestic private investments in productive sectors that provide jobs and livelihoods, divert public investments towards the security sector and destroy public and private physical capital, including infrastructure and assets. Armed conflict also often increases mortality and disability rates, while depressing the overall skill level of the workforce, in particular for the most vulnerable segments of the population. Armed conflict can also increase informal, non-contractual and unregistered work, particularly for youth and decrease social protections for workers. Illicit economies \u2013 built around continued armed conflict \u2013 may also thrive (see IDDRS 6.20 on DDR and Organized Crime). Even in post-conflict contexts, or pockets of peace in war torn countries, the economy may still be too weak to absorb former members of armed forces and groups. Understanding the effects of the war economy on labour markets, private security and public sector activities is essential for successful support to economic reintegration. DDR practitioners should recognize that providing vocational training alone will not help former members of armed forces and groups to gain employment if the provision of training programmes is not a result of a thorough and in-depth assessment of the market and if they are not linked to broader programmes to generate employment, including private sector development. Training programmes should also reinforce former combatants\u2019 understanding of workers\u2019 rights and responsibilities to increase their employability and absorption in the workforce. Economic reintegration support should therefore be part of a broader approach including three tracks. The first track may begin with the definition by local and/or national authorities of long-term development objectives to be pursued. This would inform targeted support to be provided to former members of armed forces and groups as well as receiving communities. This may, for example, include reinsertion assistance in the form of income generating activities, public works programmes, cash-based transfers and/or in-kind support, which is focused on consolidating security and stability and rebuilding social and economic infrastructure in line with the defined long-term development objectives. This can be complemented with a second track, in which reintegration support is provided building on interventions of the first track to rebuild local communities through initiatives such as investing in local infrastructure, promoting local-level employment opportunities, and rebuilding local government capacity. This is critical and requires that an enabling environment for employment creation should be actively promoted as part of reintegration programming. The third track moves beyond the remit of DDR practitioners, and aims to consolidate previous gains in order to achieve the defined long-term development objectives by supporting the creation of sustainable \u2018decent\u2019 work, through the development/revision of macro-economic and sector policies, institutional capacity building and the creation of a framework for social dialogue. Once the long-term development objectives are defined, interventions in each of these tracks could be initiated simultaneously. Research has also shown that there are positive shifts in household income usage when involving household members in economic decision-making. Frequency of communication between spouse and former armed force/group member regarding choice of reinsertion and reintegration assistance positively correlates with more successful economic reintegration. Therefore, DDR practitioners should consider how to involve families in household decision making in order to maximize the economic conditions of the household. 9.1.1 Employability of former members of armed forces and groups Many ex-combatants and persons formerly associated with armed forces and groups may have not had the opportunity to receive an education or to develop employable skills, particularly if they joined an armed force or group at an early age. To improve their employment prospects, the options below may be considered. Specific guidance on children and youth is not provided here but may be found in IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR. Education Time spent with armed forces and groups results in a loss of educational opportunities. This in turn can create barriers to reintegrating economically. To address these gaps, DDR practitioners should consider adult education programmes as part of reintegration support. Providing adult education alongside other forms of support (such as vocational training and life skills) often provides former members of armed forces and groups with a better and broader basis for finding long-term employment. Life skills DDR practitioners should include the development of life skills within reintegration support. These types of skills are critical for employability but also for other aspects of social and political reintegration (see sections 9.2 and 9.3). Examples of the types of life skills that could be developed are: self-value and self-respect, self-awareness and self-management, interpersonal skills, social and emotional intelligence, critical thinking, problem solving and decision making, adaptability and flexibility, resilience, civic education, non-violent coexistence, negotiation, and basic financial management. Vocational training Vocational training can play a key role in the successful reintegration of ex-combatants and persons associated with armed forces and groups by increasing their chances of effectively participating in the labour market. Most armed conflicts result in the disruption of training systems and, because of time spent in armed forces or groups, many ex-combatants and persons associated with armed forces and groups do not acquire the skills that lead to a job. At the same time, the reconstruction and recovery of a conflict-affected country requires large numbers of skilled persons. Training provision needs to reflect the balance between demand and supply, as well as the aspirations of the participants and beneficiaries of the reintegration programme. It should therefore draw on previously conducted economic and labour market opportunity mapping (see section 7.1.2) and, if applicable, the profiling exercises conducted during prior demobilization (see IDDRS 4.20 on Demobilization). Economic sectors, which can absorb labour, should be exploited, while DDR practitioners should avoid training too many individuals for one particular sector, making it impossible for the local market to absorb. DDR practitioners should develop strong networks with the local business community in their areas of operation as early as possible to engage them as key stakeholders in the reintegration process and to enhance employment options post-training. This could include the development of apprenticeship programmes (see below), entering into Memorandum of Understanding\u2019s (MOU) with local chambers of commerce or orientation events bringing together key business leaders, local authorities, service providers and reintegration programme participants and beneficiaries. Employers\u2019 organizations are an important partner, as they may identify growth sectors in the economy, and provide assistance and advice to vocational training agencies. They can also help to identify a list of national core competencies or curricula and create a system for national recognition of these competencies/curricula. Employers\u2019 organizations can also encourage their members to offer on-the-job training to former members of armed forces and groups by explaining the benefits to their businesses such as increased productivity and competitiveness, and reduced job turn-over and recruitment expenses. Systematic data on the labour market and on the quantitative and qualitative capacities of training partners may be unavailable in conflict-affected countries. Engagement with the business community and service providers at the national, sub-national and local levels is therefore vital to fill these knowledge gaps in real-time, and to sensitize these actors on the challenges faced by ex-combatants and persons formerly associated with armed forces and groups. DDR practitioners should also explore opportunities to collaborate with national and local authorities, other UN agencies/programmes and any other relevant/appropriate actors to promote the restoration of training facilities and institutions and the capacity building of trainers. If former members of armed forces and groups have little or no experience of decent employment, vocational training should include a broad range of training options so as to provide individuals with choice and control over decision-making that affects their lives. Specifically, consideration should be given to the type of training that females would prefer, rather than the inclusion of training for traditional female roles in work (e.g. secretarial, beauty therapy, hairdressing, tailoring, etc.). The level of training should also match the need of the local economy to ensure greater probability of employment, while training modalities should be developed to most appropriately reflect the learning needs of individuals who may have been deprived of much of their schooling. As former members of armed forces and groups may be experiencing trauma, psychosocial support should be available during vocational training to those who need it. Vocational training modalities \u2013 such as part-time or evening classes - should also be considered to cater to those with dependants (particularly young women with children). Individuals require learning strategies that allow them to learn at their own pace. Learning approaches should be interactive and utilize appropriate new technologies. This may include digital resources and eLearning, as well as mobile skills-building facilities. The role of the trainer involved in these programmes should be that of a facilitator who encourages active learning, supports teamwork and provides a positive adult \u2018role model.\u2019 Traditional supply-driven and instructor-oriented training methods should be avoided. Where possible, and in order to prepare individuals with limited or no previous work experience for the highly competitive labour market, vocational training should be paired with apprenticeship and/or \u2018on-the-job\u2019 training opportunities. Trainees can then combine the skills they are learning with practical experience of norms and values, productivity and competition in the world of work. In instances where the labour market has very limited absorptive capacity, vocational training should be accompanied by the provision of access to micro-finance and start-up grants or tools to facilitate micro business and self-employment activities (see below). Ex-combatants and persons formerly associated with armed forces and groups can experience further frustration and hopelessness if they do not find a job after having been involved in an ineffective or poorly targeted training programme. These feelings can make re-recruitment more likely. One of the clearest lessons learned from past DDR processes is that even after training, former combatants struggle to succeed in economies that have been damaged by war. Businesses owned by former combatants regularly fail because of intense competition with highly qualified people already running the same kinds of businesses, limited experience in business start-up, management and development, and because of the very limited cash available to pay for goods and services in post-war societies. To address these issues, reintegration programmes should more effectively empower their participants by combining several skills in one course, e.g., driving can be combined with basic car repair skills; and home economics with tailoring, pastry or soap-making. This is because the possession of a range of skills greatly improves employability. Also, providing easy-to-learn skills such as mobile phone repair makes individuals less vulnerable and more adaptable to rapidly changing market demands. Together the acquisition of business skills and life skills (see above) can help individuals to become more effective in the market. Training ex-combatants and persons formerly associated with armed forces and groups in areas they might identify as their preference should be avoided if the jobs they choose are not required in the labour market. Training and apprenticeship programmes should be adapted to people\u2019s abilities, interests and needs, to enable them to complete the programme, which will both boost their employment prospects and bolster their self-confidence. Where possible, vocational training should be accompanied by high quality employment counselling, career guidance and labour market information. Apprenticeships Apprenticeships are a form of on-the-job training where employers agree by contract to train individuals (apprentices) in a particular trade for a fixed period of time. A reintegration programme can subsidize such learning and training opportunities by paying the trainees an allowance and/or incentivizing employers with up-skilling courses or other subsidized services to take on apprentices for a defined period. Apprenticeships should be carried out according to local traditions and norms regarding access, cost-sharing arrangements, duration and conditions for graduation, when appropriate. Skill assessment and certification mechanisms should be established to provide legitimacy to those with existing skills (including recognition of prior learning \u2013 RPL) as well as those acquiring new skills. Such certification is useful for potential future employers and consumers as a form of verification and confidence for employment. For trades with no apprenticeship system in place, other forms of on-the-job-training should be considered. In addition, since funding may not be sufficient within a reintegration programme to cover all training during apprenticeships, linkages to microfinance programmes should be established. Micro and small business training and start-ups Reintegration programmes should use existing employment opportunities wherever possible, as the risk of failure is lower than if ex-combatants and persons formerly associated with armed forces and groups try to start new microenterprises. However, if the labour market has weak absorptive capacity, many reintegration programme participants will need to rely on the informal economy for employment. Therefore, a strong focus on self-employment through business training support will offer those with entrepreneurial drive an effective means to succeed independently. While the recovery and expansion of the private sector should be encouraged (see below), it may be necessary to focus on creating new micro-enterprises. If micro-finance institutions and mechanisms are already locally available, the reintegration programme should establish partnerships with them to ensure accessibility for programme participants. Consistent follow-up of such programmes is important, as many programme participants may need coaching and mentoring. The success of micro-finance projects involves a certain level of business skills training, for which provisions must be made for participants to attend (i.e. subsidies for food, transportation, childcare, etc.). Such assistance should culminate in a business plan. In situations of low literacy or illiteracy, a programme must begin with literacy training or must develop low literacy tools such as pictograms for accounting, stock management, market analysis, how to access micro-credit and other business functions. Business skills training may be complemented by social education on a range of context-appropriate topics, including reproductive health, HIV, peacebuilding, conflict resolution, problem solving and decision making, gender equality, and general sessions that work to build self-esteem and self-confidence. Reintegration programmes should also ensure that different kinds of small businesses are started to avoid distorting the balance of supply and demand in local markets. In addition, these businesses should be based on market surveys that identify the businesses and services needed in a particular area. It is also important to ensure that the same businesses do not get support from multiple international organizations. Finally, linkage arrangements between micro-enterprises as suppliers to small, medium and larger scale firms, should be sought out. If the main approach towards funding the creation of micro-enterprises is micro-grants, they should be provided to ex-combatants and persons formerly associated with armed forces and groups only after they have drawn up a clear start-up business plan and should be paid in instalments with diligent follow-up. Reintegration programmes should ensure that relevant service providers are in place to advise the new entrepreneurs on financial management, for example through an ICRS (see section 6.3.4). Instalments may be given in kind (equipment, supplies, training, etc.), avoiding large cash payments, which are difficult to monitor effectively. But this should be balanced against the disadvantages of complicated and time-consuming procurement processes. Training and technical assistance services are also essential to the success of start-ups, together with direct, on-the-ground supervision and monitoring. Where possible, it is important that reintegration programmes gradually shift from small grants to credit access. This shift is needed so as not to create dependencies on grant schemes and to support entrepreneurship and market systems development. Involving female family members \u2013 such as wives of ex-combatants \u2013 in economic activities and access to credit may further help create successful outcomes. 9.1.2 Creation of an enabling environment for employment Income generating activities A national enabling environment for job creation and decent work is essential. Enabling policies and programmes should be initiated early and supported by DDR practitioners engaged in the planning of reintegration support. The following are key factors for creating an enabling environment for employment at the policy level: Strongly considering policy choices that ensure that infrastructure production and maintenance rely on local labour, local technical capacity and local materials to the greatest extent possible. Supporting national policies for labour-intensive work that are especially suitable for employing large numbers of ex-combatants and persons formerly associated with armed forces and groups. Reviewing and supporting national policies and legislation to create an enabling environment for the private sector and small and medium enterprise (SME) development in rural and urban areas. This should include incentives for local companies to hire high-risk groups. Recognizing potential limitations within the conflict and post-conflict context when supporting particular national policies. Identifying priority economic sectors with the potential for rapid expansion and job creation. Private sector employment Building partnerships with the private sector is important to create opportunities to absorb those receiving reintegration support into the labour market. Job referral and training provided as part of the reintegration programme may be dependent on the private sector and existing business ventures. Partnership with the private sector can also help to increase the sustainability of reintegration support, for example by linking newly created small businesses into the value-chain of established companies. In some instances, private sector entities may be reluctant to engage with former members of armed forces and groups. To counteract this, the following options can be considered to encourage private sector engagement in reintegration programmes: Create incentives for private companies and employers\u2019 associations to facilitate the development of micro and small-scale vendor industries that provide services. This could create jobs for former members of armed forces and groups as well as community members. Consider options whereby private sector actors are provided with incentives in primary and secondary infrastructure contracts, on the condition that they are contractually obliged to hire a fixed number of workers from target groups (i.e., ex-combatants, persons formerly associated with armed forces and groups, etc.). Stimulate public-private partnerships in areas most suitable to community-based reintegration (infrastructure, basic services). Reintegration programmes can seek to facilitate the linkages that make these partnerships possible. Reintegration programmes should aim to place qualified ex-combatants and those previously associated with armed forces and groups in existing businesses. However, this may be difficult since business owners may not be willing (due to negative perceptions of former members of armed forces and groups) or able (due to stark economic realities) to employ them. To be sustainable, DDR practitioners should support governments and development partners to strengthen labour market institutions such as public employment services in collaboration with other providers to develop and implement integrated active labour market programmes. Programmes could include hiring, wage, training and equipment subsidies. These subsidies should be: Targeted at the most vulnerable ex-combatants and persons formerly associated with armed forces and groups and designed to meet their needs; Wage subsidies should be partial and last for a fixed period of time with incentives for employment retention; In-kind donations of equipment or training to allow for the expansion of existing businesses should be explored in exchange for the employment of reintegration programme participants and beneficiaries; Newly hired ex-combatants and those previously associated with armed forces and groups should not take the jobs of workers already employed; By combining wage subsidies with appropriate training, employers should be encouraged to use the subsidies to provide long-term employment for ex-combatants and those previously associated with armed forces and groups. In many conflict-affected societies, government agencies lack the capacity to support and deliver services to micro- and small enterprises. Various actors, including businesses, local NGOs with experience in economic projects, governmental institutions and community groups should therefore be encouraged and supported to provide business development services. Business development services incorporate a wide array of business services, both strategic and operational, and are designed to improve the performance of individual small enterprises, their access to markets and their ability to compete. DDR practitioners engaged in reintegration should also support Governments to create legal frameworks that ensure that fundamental principles and rights at work (labour rights) are respected and that vulnerable groups are not exploited within the private sector. Concessions and contracts created between the private sector and the national, regional or local government must be transparent and conducted in such a way that affected communities are able to make their voices heard. In instances where livelihoods and recovery depend on the extraction of natural resources, it is especially important to be sure that the terms of the contracts are fair to communities and local peoples, and that private companies are contractually obliged to consider human security and local economic development. Access to information, technology and capital Reintegration programmes may promote the use of (and access to) appropriate technologies - such as cellular phones, SMS market information services and radios - to access information about commodity market changes, changes in the supply or demand for goods including the daily price fluctuation, shifting weather patterns, agricultural good practices, fluctuations in food prices and other relevant information. Efforts should be made to link with NGOs, UN agencies, or private sector actors who can support such access to technology and information. In addition to technology and information, access to capital is also essential to build value chains for products derived from the agricultural or other rural livelihood sectors, to diversify such sectors and to ensure the sustainability of the activities in question in terms of use of natural and other resources. Capital used to provide essential equipment to scale-up processing, manufacturing and marketing of goods derived from agricultural products or other natural resources should be sought through networks and other implementing partners working with the reintegration programme and in the early recovery context. This capital should be supplied along with proper training programmes and business education skills. Land tenure Property rights, land tenure and access to land are important to economic reintegration in both rural and urban contexts. Land distribution, for example, can inform reintegration programmes of potential tensions and grievances that may (re-)emerge and lead to further disputes or conflicts. While reintegration programmes cannot produce land reform mechanisms, they can incorporate awareness of the linkages between land and livelihoods. Land becomes an asset when it is coupled with access to agricultural tools and inputs, technology, and information regarding markets and services. Access to land and security of land tenure are also essential to the development of land as an asset. Access to land cannot be granted and legitimized without capacity for land management at the local and national government levels. Most reintegration programmes are likely to face a myriad of land tenure systems and legal procedures involving traditional, indigenous, religious, colonial or other legacies. Armed conflict also impacts land tenure security and access to land, including through violence, land grabbing, forced displacement, destruction of land records, etc. DDR practitioners engaged in reintegration programming should seek to understand how rights have been affected by the conflict and explore how reintegration programmes can assist in enhancing land tenure security, including by supporting support the mediation of housing and land disputes at the local level whenever possible, through support to legal aid groups or other appropriate service providers. Such mechanisms can transform potential conflict scenarios into recovery and reconciliation opportunities by addressing root causes of conflict (e.g. through involving both ex-combatants and community members in finding solutions through mediation and arbitration that are rights-based, acceptable to all and in line with cultural norms). Support for legal aid in land disputes should be coordinated with relevant international and national actors. Special attention should be paid to access to land by women, widows, child-headed households, disabled individuals and other groups with specific needs. In many instances, women suffer discrimination when it comes to access to land. Reintegration programmes should aim to support women\u2019s access to land and tenure security to promote gender equality and women\u2019s human rights, but also because their productivity in the agricultural sector is important for increased food security. While it is important to encourage land management and tenure policies that are consistent with cultural norms, the reform of such administrative sectors also provides an opportunity to pave the way for women\u2019s rights in terms of property and land tenure. Reintegration programmes should seek to make land as profitable an asset as possible, by providing incentives for the sustainable use of natural resources, and helping to develop the capacity of local and national institutions to provide land and property rights. These efforts can be augmented by linking up with rule of law institutions wherever possible. In addition, land tenure security to protect those who depend on land for livelihoods should be addressed through other partners at the national and international level. 9.2 Social and psychosocial reintegration Former combatants and those formerly associated with armed forces and groups may face a number of personal challenges during their reintegration, including: separation from the social support networks that they relied on while members of an armed force or group; stigma and rejection by communities of return; psychosocial needs, including trauma-spectrum disorders; physical health issues, such as living with a disability or a chronic illness; losses or shifts in gender identities and norms. In addition to these issues, while individuals are members of armed forces and groups they may be socialized to the use of violence and develop internalized norms that condone violent activity. Violence may be carried from the battlefield to the home and the community, where it can take on new forms and expressions. While the majority of former members of armed forces and groups are male, and violence between these males is often more visible, female ex-combatants also appear to be more vulnerable to violent behaviour than other civilian women. If socialization to violence is not addressed, and alternative behaviours and norms are not adopted, former members of armed forces and groups can find it difficult to socially reintegrate into civilian life. Compounding these issues, former members of armed forces and groups may also find it difficult to renegotiate their societal and gender roles within both the public and private spheres. Male ex-combatants and persons formerly associated with armed forces and groups may return home to discover that women have taken on traditional male responsibilities in their absence, such as the role of the \u2018breadwinner\u2019 or \u2018protector\u2019, challenging men\u2019s place both at home and in the community. Equally female former members of armed forces and groups may return home only to find that they are expected to revert to traditional gender roles, despite the fact that they may have taken on different non-traditional gender roles during their time with their armed force or group. Non-binary individuals may be stuck between different gender norms unable to fully identify with the socially prescribed norms. If former members of armed forces or groups are unable to deal with these issues and associated feelings of frustration, anger or sadness, this may result in self-directed violence (suicide, drug and alcohol abuse), interpersonal violence (sexual and gender based violence, intimate partner violence, child abuse, rape and murder) or group violence against the community (such as burglary, rape, harassment, beatings and murder). Social exclusion and marginalization also often undermine economic reintegration, as former members of armed forces and groups may find it difficult to hold down a job or to participate in training programmes or apprenticeships. Experience has shown that social reintegration is not only as important as economic reintegration, but that it can also be a pre-condition and a catalyst for employment and economic security. Progress towards social reintegration can be tracked through qualitative tools such as focus groups or key informant interviews in communities. \tDDR practitioners should consider the following interventions in order to support social reintegration: 9.2.1 Reconciliation Reconciliation among all groups is perhaps the most fragile and significant process within a reintegration strategy, and is likely to involve transitional justice measures (see IDDRS 2.11 The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Reconciliation is a complex notion that may be understood differently depending on the context. It is important to see reconciliation not only as an end goal, but also as a dynamic and often long-term and dynamic process. It cannot be declared or imposed but requires committed work involving all relevant stakeholders. It requires dealing with legacies of past human rights violations (transitional justice), but also building trust and shared visions for the future, personal security, positive relationships, breaking down of cultures of fear and suspicion, and a transformation of the structural conditions that gave rise to conflict in the first place. Therefore, those involved in reintegration programmes should explore communities\u2019 needs and expectations with respect to reconciliation and seek to identify \u2013 always in consultation with communities and all relevant stakeholders \u2013 entry points for the reintegration process to contribute to broader reconciliation. This should be undertaken in partnership and coordination with other recovery, peacebuilding and reparation initiatives, in particular transitional justice programmes. This may include reflection on how cultural traditions and indigenous practices may play a role in reconciliation processes. However, it is critical to ensure the victim-centredness of such initiatives and avoid processes and ceremonies that retraumatize or stigmatize victims, or that pressure them into \u201cforgiveness\u201d or accepting terms they are not comfortable with (e.g., by staging public encounters between victims and perpetrators). All reconciliation initiatives should be fully human rights-compliant and ensure that the dignity and safety of victims are respected, especially when dealing with survivors of sexual and gender-based violence. In addition to focused \u2018reconciliation activities\u2019, reintegration programmes should aim to mainstream and encourage reconciliation in all programmatic components. To achieve this, these programmes should promote meaningful community participation and seek to benefit the community as a whole, including other conflict-affected groups (see section 6.3 on community-based reintegration support). Working together in mixed groups of returning combatants, IDPs, refugees, and community members, especially on economically productive activities, such as agricultural cooperatives, group micro-credit schemes, and labour-intensive community infrastructure rehabilitation, can transform negative stereotypes, promote peaceful coexistence and build trust. Strengthening social capital and social acceptance Social capital is a term that points to human relationships as a resource or form of capital just as valuable as human and monetary capital. If community members have shared norms and values this facilitates the development of trust between different individuals and enables collaborative action and community reconciliation. During armed conflict, social capital often breaks down as members of armed forces and groups join a new social unit and communities are polarized. Conflict-affected communities are often left with low levels of trust and damaged social capital. Former members of armed forces and groups may also lose their military support networks at the same time that they encounter rejection from communities. Without the development of new and pre-existing social capital, former members of armed forces and groups may be less likely to secure sustainable livelihoods. DDR practitioners should seek to foster social capital through life skills training and activities that may contribute to reconciliation (see sections 9.1.1 and 9.2.1). Community development projects that employ former members of armed forces and groups, and engage a wide range of community members in decision making can also help to rebuild trust and contribute to reconciliation. Public information and sensitization campaigns can also be used to build social capital and social acceptance by ensuring that stakeholders are aware that reintegration programmes are not designed to reward former members of armed forces and groups, but to allow them to become valuable members of the community. 9.2.3 Social support networks Social support networks are key to the adjustment of ex-combatants and persons formerly associated with armed forces and groups to civilian life. Having persons to turn to who share one\u2019s background and experiences in times of need and uncertainty is a common feature of many successful adjustment programmes, ranging from culturally appropriate version of Narcotics or Alcoholics Anonymous (N/AA) to widows support groups. Socially-constructive support networks, such as peer groups, men\u2019s and women\u2019s groups, in addition to groups formed during vocational and life skills training, should be encouraged and supported with information, training and guidance, where possible and appropriate. Families should also be supported, as part of reintegration programmes, to adjust to the return of relatives who are former members of armed forces and groups. Ex-combatant associations When associations have mixed memberships \u2013 consisting of former members of armed forces and groups and community members \u2013 they can contribute to the development of social capital and social reintegration. Associations often provide their members with a way to cope with vulnerability and unexpected shocks. For example, if members pay monthly dues these can be used to cover expenses that association members are unable to meet such as medical fees, funeral expenses or school tuition. Associations can be used to facilitate economic reintegration if association members are able to access micro-credit (see section 9.1.1), or if association members pool resources. While keeping ex-combatants together may run the risk that these individuals can be remobilized, remobilization depends on more than mere togetherness. A variety of additional factors are important such as the character of the armed force or group, the political context and the role of elites who may serve as recruiters. The risk of remobilization will need to be carefully analyzed against the opportunities that maintaining networks of former members of armed forces and groups present in terms of social, political and economic reintegration. 9.2.4 Psychosocial services If former members of armed forces and groups have psychological needs (such as post-traumatic stress, anxiety and/or depression), this may hinder their ability to establish and sustain social relationships to contribute to income generation and more broadly, to reintegrate into civilian life. Individuals who show outward signs of psychiatric distress, such as aggression or irritation, may face stigmatization from community members that may hinder their reintegration. DDR practitioners engaged in the provision of reintegration support shall therefore consider psychosocial support as a way to reduce suffering and allow former members of armed forces and groups to become proactive and full civilian members of society. Psychosocial care provided as part of a reintegration programme should be coordinated and harmonized between different providers, such as Universities, NGOs, religious based initiatives and public health structures. Careful consideration should also be given to how such support can be made more available to victims and community members more broadly, including to avoid resentment. As a first step, DDR practitioners shall assess the capacity of existing support providers and identify gaps. Simultaneously DDR practitioners shall also undertake an assessment to better understand local cultural and religious traditions and resources to addressing traumatic experiences and mental health needs. Working in consultation with national and local experts on mental health and trauma recovery services, reintegration program shall develop a referral system for DDR participants to existing service networks, and work to strengthen those programmes to promote longer term sustainability. Where those services do not exist in the country, or are weak, it may be necessary to develop a referral system, building on other medical referral systems, to serve communities and DDR participants. A variety of trauma resolution approaches have been proven effective in the treatment of psychological stress related to trauma, including mental health literacy or psychosocial education on the nervous system and dysregulation due to acute stress, combined with somatic-based approaches to learn to identify and successfully work with triggers and promote nervous system health, and talk therapy-based approaches (including narrative exposure therapy, eye movement densitization, have been proven effective in the treatment of traumatic practices. Counselling services should be open and accessible to all trauma-affected members of society, including children, adults, youth, victims, perpetrators, civilians and former members of armed forces and groups. They must also be culturally acceptable (i.e., there must be a culturally acceptable age and gender match between those providing and receiving support). Interventions should be scientifically-based and follow IASC Guidelines on mental health and psychosocial support (MHPSS). Impact evaluation should also be conducted in order to develop evidence-based best practice models, to assess the recovery of selected individuals pre- and post-treatment and, among other indicators, to assess the recovery of occupational functioning and the impact of psychosocial support on social cohesion in the community. Parallel to these evaluations, a measure of supervision (by master counsellors or clinical practitioners) and peer sharing should be established between community, district practitioners and researchers at the national level. Where appropriate, if local capacity is limited, local staff may be trained in standardized diagnostic procedures, such as screening with close consultation with mental health providers, and manualized, evidence-based interventions, such as Narrative Exposure Therapy (NET) in combination with Interpersonal Therapy (IPT). NET in particular has been shown to be particularly effective in addressing trauma-related psychological stress in both conflict and post-conflict settings. It can also be taught to non-medical, lay personnel with various cultural backgrounds. If mental health professionals from existing health structures are available, they should also be trained (if necessary) and involved in a referral structure. Sensitization and public awareness programmes on mental health and related psychosocial issues should be developed and informed by the work of local staff. These programmes should sensitize the community to the symptoms experienced by those who suffer from mental illness and impairment of associated functioning. This will involve strong efforts to destigmatize the conditions faced by psychologically-affected individuals (see Module 4.60 on Public Information and Sensitization). These programmes should also provide information on access to care. In some countries, psychological suffering is explained and treated using traditional methods. If individuals have participated in traditional rituals to be equipped with special combat powers, it may be important for them to be cleansed of these powers once they have left their armed force or group. Some psychologists and psychiatrists recommend including traditional rituals or cooperating with traditional healers in psychosocial projects. What has been established in the scientific literature is that traditional rituals cannot be considered sufficient treatment, especially for those individuals with severe mental health issues. Severely psychologically-affected former members of armed forces and groups should be identified as early as possible through a screening process conducted by trained local staff. When reintegration support is preceded by formal demobilization, this type of screening shall take place during demobilization (see section 6.4 in IDDRS 4.20 on Demobilization). For further information on these issues, see IDDRS 5.70 on Health and DDR. 9.2.5 Medical and physical health issues Former members of armed forces and groups are likely to suffer a range of health problems that can affect both their own reintegration prospects and receiving communities. Immediate health care assistance shall be provided as soon as individuals join a DDR process and continued throughout the reintegration programme (see IDDRS 5.70 on Health and DDR). The reintegration programme should ensure that ex-combatants and persons formerly associated with armed forces and groups are not a distinct target group for medical assistance, but receive care along with members of their communities of return. Linkages should be made to private and public national and/or community health care facilities. Support should also be given to the main caregivers in receiving communities. HIV/AIDS The conditions that exist during violent conflict increase the risk of infection for HIV and other sexually transmitted infections and can have a devastating impact on access to information, care and treatment (see IDDRS 5.60 on HIV/AIDS and DDR). In addition, a growing body of evidence shows that the immediate post-conflict context, in which reintegration may take place, may increase the risk of transmission due to the reopening of borders and other formerly inaccessible areas, increased mobility and the return of displaced populations. Receiving communities may perceive ex-combatants and persons formerly associated with armed forces and groups as HIV-positive and react with discrimination or stigmatization. In many cases, these negative reactions stem from fear created by misinformation about HIV and AIDS. Discrimination against or stigmatization of (potentially) HIV-infected individuals should be countered with appropriate sensitization campaigns during the reintegration programme. HIV initiatives should start in receiving communities before reintegration begins, and should be linked wherever possible with broader recovery and humanitarian assistance provided at the community level, and to National AIDS Control Programmes. They should seek to build awareness, focus on health seeking behaviour, and ensure community access to sexual health services. In instances where formal demobilization or other DDR-related tools precede reintegration, peer education and training and awareness can begin. With the right engagement and training, ex-combatants and persons formerly associated with armed forces and groups have the potential to become agents of change by assisting their communities with HIV prevention and awareness activities. Persons with disabilities War leaves behind large numbers of injured people. Former members of armed forces and groups with disabilities shall be included in reintegration programmes and treated equally to other reintegration participants and beneficiaries. DDR practitioners shall ensure that barriers to the inclusion of disabled individuals in all aspects of reintegration support be addressed, including by ensuring that those providing care to disabled individuals are provided with access to reintegration support. For further information on reintegration support and disability, see IDDRS 5.80 on Disability-Inclusive DDR. It is important to take into consideration the ways in which gender dynamics in the community and home intersect with disabilities, including women and girls often have the added burden of caring for persons with disabilities, and both men and women face unique challenges vis a vis how their gender identities are affected by their disabilities. Reproductive health The provision of reproductive health services, including maternal health and the engagement of fathers and STI prevention and response programmes, should begin as early as possible in the DDR process and be continued throughout reintegration. The intersectionality of gender identities, health seeking behavior, violence and sexuality, etc. shall be considered in the design and delivery of programme support and awareness raising campaigns. Peer education campaigns can combine elements of HIV/AIDS care and prevention, reproductive health, gender identities and norms, and sexual violence prevention, using a strong platform to engage both male and female DDR participants and those with other gender identities, as well as community members and leaders in behavior change work. Planning for maternal health, including, that pregnant women who have been with armed forces and groups may not have seen a doctor during their pregnancy and therefore may require urgent referral to services and/or more regular access to care once returning to civilian life. Preferential or subsidized access to reproductive care may be required and should be considered by DDR practitioners. Sexual violence recovery services Sexual violence is often a tool of war utilized against women and girls, but can also be used against men and boys. Therefore, services should be culturally appropriate to ensure appropriate, confidential, and trauma-informed care is available to, and customized to the specific needs of, all genders. Access to sexual violence recovery services, including pep kits, sexual assault evidence collection kits, fistula repair, psychosocial support, and access to justice services, should be available to male, female, and non-binary individuals. Given female survivors may return to communities with children born out of wedlock or as a result of sexual violence, targeted culturally-appropriate, information and behavior change campaigns should be undertaken to mitigate potential stigma against them or their children. All ICRS providers should provide informational materials and counselling support to appropriately refer sexual violence survivors in a gender-responsive manner. Sexual violence prevention programmes should be included as part of any reintegration programme. Post-conflict, rises in sexual and gender-based violence, particularly intimate partner violence, is common. The socialization or conditioning to violence, combined with nervous system dysregulation, untreated trauma, negative coping mechanisms such as the use of drugs or alcohol, inability to attain social status according to one\u2019s gender identity or local customs, can all be drivers to increases in violent acts. Prevention programming should focus at the community level, engaging leaders and all members of society through public information and behavior change communication programmes, such as peer education, radio dramas, small group training or discussion groups, community events, etc. Targeted support for stress management and emotional regulation should also be provided in tandem with broader community support. Reintegration programmes should also provide social skill building, training, and other support to mitigate harmful gender identities and norms that may link violence with gender identity expressions. 9.2.6 Gender identities and norms Due to the intersectionality of gender identities and norms in all aspects of the reintegration process, reintegration support should include culturally appropriate training/discussion or other community mobilization activities on gender and work to actively shift harmful norms. Gender training should begin in demobilization with sensitization sessions, but should be addressed in more depth in reintegration support. Reintegration support should be based on gender-responsive assessments with community members and ex-combatants and associated groups. They should include programmatic and public information components which engage individuals and communities in discussion around cultural norms and gender identities, frustrations, or challenges in achieving those norms, the intersectionality with proclivity to use violence, violent or militarized gender identities, and linkages to sexual health, to enable broader dialogue. Peer education action-oriented groups, which provide training and sensitization can support deeper ownership and broader community reach. Public information campaigns and programme support should foster non-violent, healthy expressions of masculinities and femininities. This can be part of peer education programming around gender-based and sexual violence prevention, fatherhood and parenting campaigns, reproductive health, or other innovative programming. Good practice from implementing social reintegration programme components adapted from the development context for reintegration programmes) have demonstrated the importance of addressing these issues given their link to both sustainable peace and security, as well as the importance of adapting them to be culturally appropriate. 9.3 Political reintegration Political reintegration is the involvement and participation of ex-combatants and persons formerly associated with armed forces and groups in decision- and policy-making processes at the national, regional and community levels. It is important to differentiate between political reintegration and the political nature of reintegration processes. DDR as a whole is inherently political and is often part of a political strategy to induce armed forces and groups to exchange violence for dialogue and a negotiated peace agreement (see IDDRS 2.20 on The Politics of DDR). While political reintegration is related to this strategy, its goals are more specifically focused on engaging programme participants and beneficiaries in the political processes of their communities and countries at both the individual and group levels. Overarching political strategies and political reintegration may however be linked. For example, warring parties may push their members to run for political office, encourage integration into the security services so as to build a power base within these forces, or opt for cash reintegration assistance, some of which is used to support political activities. The notion of individual choice should therefore be encouraged so as to counter attempts to co-opt reintegration for political ends. 9.3.1 Group level political reintegration Aiding former armed groups to transform into political parties is essential to ensuring that grievances and visions for society continue to be expressed in a non-violent manner. While efforts to build political platforms, including political parties lie beyond the scope of DDR, DDR practitioners may develop partnerships with actors that are already engaged in this field. The latter could develop projects to assist armed group members who enter into politics in preparing for their new roles. The decision to seek such partnerships shall be based on a thorough analysis of the political context and of the armed group in question. This is because the elevation of some armed groups into political parties may only serve to entrench and legitimize groups that are corrupt, do not enjoy public support and undermine the political system over the long-term (see section 5 of IDDRS 2.20 on The Politics of DDR). 9.3.2 Individual level political reintegration Effective political reintegration at the individual level involves empowering citizens by providing them with the knowledge and tools to voice their opinions, vote and take part in governing their country without fear of intimidation, discrimination, retaliation or violence. To support individual level political reintegration, DDR practitioners may include the following activities within reintegration programmes: Public information and sensitization campaigns on civil and political rights: Former members of armed forces and groups and their communities of return should receive sensitization related to political reintegration and the accompanying peace process (if one exists). Restoring legal identity and access to social security benefits/allowances: Reintegration programmes should support access to social security benefits through access to identity cards, social security documents, and voter and property registration. Civic and voter education: This may include the provision of education (or referrals to educational opportunities) on the nature and functioning of democratic institutions at the national, regional and/or local levels. If a peace process is in place, civic education on this process should be considered. At the local level, human rights education on the practical application of rights, such as the right to participate in public affairs (by voting in free and fair elections but also outside of electoral processes) and the exercise of fundamental freedoms such as the rights to freedom of opinion and expression and to peaceful assembly (including the right to dissent and protest) may be particularly effective. Female ex-combatants and women formerly associated with armed forces and groups may face discrimination in regard to the exercise of their civil and political rights, combined with a socio-cultural environment that is not conducive to their engagement in public life and decision making. DDR practitioners should therefore pay specific attention to the needs of women, include an \u2018intersectionality\u2019 approach in assessments for political reintegration, and include gender in monitoring and evaluation for political reintegration (see IDDRS 5.10 on Women, Gender and DDR). The specific needs of youth, persons with disabilities and persons with chronic illnesses should also be addressed. DDR practitioners should closely coordinate reintegration programming with relevant line ministries and the principal UN entities involved in early and longer-term support to the restoration and strengthening of civil rights and governance. They should also coordinate and liaise with donors, multilateral organizations, NGOs, and other relevant organizations and civil society organizations dedicated to political party assistance and electoral support. If support to political reintegration is being provided within the context of a peacekeeping mission, then DDR practitioners should make use of the assets and capacities of this mission. DDR practitioners should also consider the involvement of specialized organizations, including advocacy groups, organizations for persons with disabilities and ex-combatant associations in the planning and brainstorming process for political reintegration programming. In particular, ex-combatant associations can serve as critical parts of civil society, articulating and advancing the political ideas of ex-combatants. The benefits and risks of working through ex-combatant associations should be evaluated on a case-by-case basis (see section 9.2.3). Annex 1: Sample survey questions for reintegration programme participants", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "6e709520-3664-4f5a-9fbe-e8c8decf16ba", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 1 1. Module, scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 1 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..................\u2026\u2026\u2026\u2026\u2026\u2026. 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 2 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.1 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026. 5 4.2 Unconditional release and protection of children \u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.3 Gender-responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 6 4.5 Context-specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 4.6 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 5. Objectives of PI/SC in support of DDR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 7 6. Planning and designing PI/SC strategies\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 9 6.1 Understanding the local context \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 10 6.2 Communicating about former members of armed forces and groups \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 11 6.3 The preparation of PI/SC material \u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026 12 6.4 Hate speech and developing counter-narratives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026.............. 12 6.5 Gender-sensitive PI/SC for DDR\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202613 6.6 Anti-stigma and mental health PI/SC in support of DDR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 14 7. Stakeholders or target audiences \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 15 7.1 Primary audience (participants and beneficiaries) \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026................... 15 7.2 Secondary audience (partners) \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 16 8. Media \u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 17 8.1 Online and web presence \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 18 8.2 Radio: local, national and international stations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026............ 18 8.3 Print media \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.................. 18 8.4 Visual media: TV, film and billboards \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 18 8.5 Interactive forums: theatre, seminars, debate \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 19 8.6 Local townhall events \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 8.7 Hotlines \u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 8.8 Augmented and virtual reality \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 19 8.9 Gamification \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026 20 9. Monitoring and evaluation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 20 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 20 4.60 Public Information and Strategic Communication in Support of DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "6e5c4103-c23f-4f2c-bdd9-ee9e7ea7ae9e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "Summary Public information and strategic communication (PI/SC) are key support activities that are instrumental in the overall success of DDR processes. Public information is used to inform DDR participants, beneficiaries and other stakeholders of the process, while strategic communication influences attitudes towards DDR. If successful, PI/SC strategies will secure buy-in to the DDR process by outlining what DDR consists of and encouraging individuals to take part, as well as contribute to changing attitudes and behaviour. A DDR process should always be accompanied by a clearly articulated PI/SC strategy. As DDR does not occur in a vacuum, the design, dissemination and planning of PI/SC interventions should be an iterative process that occurs at all stages of the DDR process. PI/SC interventions should be continuously updated to be relevant to political and operational realities, including public sentiment about DDR and the wider international effort to which DDR contributes. It is crucial that DDR is framed and communicated carefully, taking into account the varying informational requirements of different stakeholders and the various grievances, perceptions, culture, biases and political perspectives of DDR participants, beneficiaries and communities. An effective PI/SC strategy should have clear overall objectives based on a careful assessment of the context in which DDR will take place. There are four principal objectives of PI/SC: (i) to inform by providing accurate information about the DDR process; (ii) to mitigate the potential negative impact of inaccurate and deceptive information that may hamper the success of DDR and wider peace efforts; (iii) to sensitize members of armed forces and groups to the DDR process; and (iv) to transform attitudes in communities in such a way that is conducive to DDR. PI/SC should make an important contribution towards creating a climate of peace and security, as well as promote gender-equitable norms and non-violent forms of masculinities. DDR practitioners should support their national counterparts (national Government and local authorities) to define these objectives so that activities related to PI/SC can be conducted while planning for the wider DDR process is ongoing. PI/SC as part of a DDR process should (i) be based on a sound analysis of the context, conflict and motivations of the many different groups at which these activities are directed; (ii) make use of the best and most trusted local methods of communication; and (iii) ensure that PI/SC materials and messages are pre-tested on a local audience and subsequently closely monitored and evaluated.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "36c05bf4-73c3-4ea2-afc9-d5d138de5407", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module aims to present the range of objectives, target groups and means of communication that DDR practitioners may choose from to formulate a PI/SC strategy in support of DDR, both at the field and headquarters levels. The module includes guidance, applicable to both mission and non-mission settings, on the planning, design, implementation and monitoring of a PI/SC strategy.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f6ebc616-148a-49f3-bf1a-f52e30283a50", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Public information seeks to provide relevant and factually accurate information to a specific audience. Strategic communication involves persuading an identified audience to adopt a desired behaviour. Disinformation: The deliberate dissemination of false information.\u00a0It is an act of deception to convince an audience of something. Disinformation is\u00a0intended\u00a0to mislead. Misinformation: Giving erroneous or incorrect information. It is false or inaccurate information that is spread unintentionally.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "82c96c7e-81e9-4c5e-a964-2b35b89ca09d", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 4, - "Paragraph": "3. Introduction DDR is a process that requires the involvement of multiple actors, including the Government or legitimate authority and other signatories to a peace agreement (if one is in place); combatants and persons associated with armed forces and groups, their dependants, receiving communities and youth at risk of recruitment; and other regional, national and international stakeholders. Attitudes towards the DDR process may vary within and between these groups. Potential spoilers, such as those left out of the peace agreement or former commanders, may wish to sabotage DDR, while others will be adamant that it takes place. These differing attitudes will be at least partly determined by individuals\u2019 levels of knowledge of the DDR and broader peace process, their personal expectations and their motivations. In order to bring the many different stakeholders in a conflict or post-conflict country (and region) together in support of DDR, it is essential to ensure that they are aware of how DDR is meant to take place and that they do not have false expectations about what it can mean for them. Changing and managing attitudes and behaviour \u2013 whether in support of or in opposition to DDR \u2013 through information dissemination and strategic communication are therefore essential parts of the planning, design and implementation of a DDR process. PI/SC plays an important catalytic function in the DDR process, and the conceptualization of and preparation for the PI/SC strategy should start in a timely manner, in parallel with planning for the DDR process. The basic rule for an effective PI/SC strategy is to have clear overall objectives. DDR practitioners should, in close collaboration with PI/SC experts, support their national and local counterparts to define these objectives. These national counterparts may include, but are not limited to, Government; civil society organizations; media partners; and other entities with experience in community sensitization, community engagement, public relations and media relations. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to enter the programme. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. DDR practitioners should keep in mind that PI/SC should be aimed at a much wider audience than those people who are directly involved in or affected by the DDR process within a particular context. PI/SC strategies can also play an essential role in building regional and international political support for DDR efforts and can help to mobilize resources for parts of the DDR process that are funded through voluntary donor contributions and are crucial for the success of reintegration programmes. PI/SC staff in both mission and non-mission settings should therefore be actively involved in the preparation, design and planning of any events in-country or elsewhere that can be used to highlight the objectives of the DDR process and raise awareness of DDR among relevant regional and international stakeholders. Additionally, PI can play an important role in encouraging a holistic view of the challenges of rebuilding a nation and can serve as a major tool in advocacy for gender equality and inclusiveness, which form part of DDR (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 5.10 on Women, Gender and DDR). The role of national authorities is also critical in public information. DDR must be nationally-led in order to build the foundation of long-term peace. Therefore, DDR practitioners should ensure that relevant messages are approved and transmitted by national authorities. Communication is rarely neutral. This means that DDR practitioners should consider how messages will be received as well as how they are to be delivered. Culture, custom, gender, and other contextual drivers shall form part of the PI/SC strategy design. Information, disinformation and misinformation are all hallmarks of the conflict settings in which DDR takes place. In times of crisis, information becomes a critical need for those affected, and individuals and communities can become vulnerable to misinformation and disinformation. Therefore, one objective of a DDR PI/SC strategy should be to provide information that can address this uncertainty and the fear, mistrust and possible violence that can arise from a lack of reliable information. Merely providing information to ex-combatants, persons formerly associated with armed forces and groups, dependants, victims, youth at risk of recruitment and conflict-affected communities will not in itself transform behaviour. It is therefore important to make a distinction between public information and strategic communication. Public information is reliable, accurate, objective and sincere. For example, if members of armed forces and groups are not provided with such information but, instead, with confusing, inaccurate and misleading information (or promises that cannot be fulfilled), then this will undermine their trust, willingness and ability to participate in DDR. Likewise, the information communicated to communities and other stakeholders about the DDR process must be factually correct. This information shall not, in any case, stigmatize or stereotype former members of armed forces and groups. Here it is particularly important to acknowledge that: (i) no ex-combatant or person formerly associated with an armed force or group should be assumed to have a natural inclination towards violence; (ii) studies have shown that most ex-combatants do not (want to) resort to violence once they have returned to their communities; but (iii) they have to live with preconceptions, distrust and fear of the local communities towards them, which further marginalizes them and makes their return to civilian life more difficult; and (iv) female ex-combatants and women associated with armed forces and groups (WAAFAG) and their children are often stigmatized, and may be survivors of conflict-related sexual violence and other grave rights violations. If public information relates to activities surrounding DDR, strategic communication, on the other hand, needs to be understood as activities that are undertaken in support of DDR objectives. Strategic communication explicitly involves persuading an identified audience to adopt a desired behaviour. In other words, whereas public information seeks to provide relevant and factually accurate information to a specific audience, strategic communication involves complex messaging that may evolve along with the DDR process and the broader strategic objectives of the national authorities or the UN. It is therefore important to systematically assess the impact of the communicated messages. In many cases, armed forces and groups themselves are engaged in similar activities based on their own objectives, perceptions and goals. Therefore, strategic communication is a means to provide alternative narratives in response to rumours and to debunk false information that may be circulating. In addition, strategic communication has the vital purpose of helping communities understand how the DDR process will involve them, for example, in programmes of community violence reduction (CVR) or in the reintegration of ex-combatants and persons formerly associated with armed forces and groups. Strategic communication can directly contribute to the promotion of both peacebuilding and social cohesion, increasing the prospects of peaceful coexistence between community members and returning former members of armed forces and groups. It can also provide alternative narratives about female returnees, mitigating stigma for women as well as the impact of the conflict on mental health for both DDR participants and beneficiaries in the community at large.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b1cd4177-8c7d-4eb5-874b-2b7a2cb4b35a", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to PI/SC strategies for DDR:", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "12959678-d4ed-4571-b451-e0e0bd633d58", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 6, - "Paragraph": "4.1 People centred DDR practitioners shall manage expectations concerning the DDR process by being clear, realistic, honest, communicative and consistent about what DDR can and cannot deliver. The PI/SC strategy shall focus on the national (and, where applicable, regional) stakeholders, participants and beneficiaries of the DDR process, i.e., ex-combatants, persons associated with armed forces and groups, dependants, receiving communities, parties to the peace agreement, civil society, local and national authorities, and the media.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6f0ac243-362b-49cf-a384-847797bfb9d1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.2 Unconditional release and protection of children Children associated with armed forces and groups and their caregivers shall be provided with child-friendly, age-appropriate and gender-sensitive information about DDR. Information should be provided to children on access to justice and reparation, and on their rights to be free from discrimination and to be safe and protected from violence and abuse. Children should also be informed of the services and support available to them, how to access this support and the procedures to access safe complaint mechanisms and judicial recourse. PI/SC strategies developed as part of a DDR process shall include provisions for disseminating messages on the rights of children and the consequences that armed forces and groups will face if engaging in child recruitment, including messages that dismantle stigma and ostracization by the child\u2019s family or home community (noting that stigma can be imposed disproportionately on girls). Communities, local authorities and police shall also be provided with information and training on how to assist children who have exited or been released from armed forces and groups and which protocols apply to ensure their protection and safe handover to child protection services. The personal information of children shall never be shared for the purposes of PI/SC, and all information gathered from children shall be treated according to the requirements of confidentiality.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "3ac29b52-9335-4d36-ba1b-b28640931667", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.3 Gender responsive and inclusive PI/SC messages shall take into consideration the needs and interests of women and girls, who play a central role in peacebuilding at the community level. Female ex-combatants and other WAAFAG must be informed about their eligibility for DDR and any special programmes for them, which may require specific strategies and approaches. PI/SC messages shall also encourage the participation of women and girls in the DDR process. DDR practitioners shall strive to ensure that key messages, communications material and information campaigns are gender responsive, taking into account the need for tailored messaging that addresses the specific needs of women, men, boys and girls. They shall also leverage opportunities to support gender-transformative norms and women\u2019s empowerment. Specific attention should be paid to developing gender-responsive information strategies that can play an important role in the reintegration and return of women by mitigating their stigmatization and contributing to community sensitization.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ab78f7f9-aee6-428e-992e-096ec7e07a00", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.4 Conflict sensitive DDR practitioners shall base any and all strategic communications interventions \u2013 for example, to combat misinformation and disinformation \u2013 on clear conflict analysis. Strategic communications have a direct impact on conflict dynamics and the perceptions of armed forces and groups, and shall therefore be carefully considered. \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made through the PI/SC strategy.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6762e8e4-d702-41b5-be5b-73dfa4a1f067", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.5 Context specific To increase the effectiveness of a PI/SC strategy, DDR practitioners shall consider cultural factors and levels of trust in different types of media. PI/SC strategies shall be responsive to new political, social and/or technological developments, as well as changes within the DDR process as it evolves. DDR practitioners shall also take into account the accessibility of the information provided. This includes considerations related to both the selection of media and choice of language. All communications methods shall be designed with an understanding of potential context-specific barriers, including, for example, the remoteness of combatants and persons associated with armed forces and groups. Messages should be tested before dissemination to ensure that they meet the above mentioned criteria.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bb640201-3e69-4e0f-9afc-4d232b11d609", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 8, - "Paragraph": "4.6 Nationally and locally owned DDR practitioners shall ensure that PI/SC strategies are nationally and locally owned. National authorities should lead the implementation of PI/SC strategies. National ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between community members and former members of armed forces and groups. National ownership also ensures that PI/SC strategies are culturally and contextually relevant, especially with regard to the PI/SC messages and communication tools used. In both mission and non-mission contexts, UN practitioners should coordinate closely with, and provide support to, national actors as part of the larger national PI/SC strategy. When combined with UN support (e.g. technical, logistical), national ownership encourages national authorities to assume leadership in the overall transition process. Additionally, PI/SC capacities must be kept close to central decision-making processes, in order to be responsive to the perogatives of the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "27517442-2b38-4343-81b5-f4e3d5ba8fe1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 8, - "Paragraph": "5. Objectives of PI/SC in support of DDR A PI/SC strategy should outline what the DDR process in the specific context consists of through public information activities and contribute to changing attitudes and behaviour through strategic communication interventions. There are four overall objectives of PI/SC: 1. To inform stakeholders about the DDR process (public information): This includes providing tailored key messages to various stakeholders, such as where to go, when to deposit weapons, who is eligible for DDR and what reintegration options are available. The result is that DDR participants, beneficiaries and other stakeholders are made fully aware of what the DDR process involves. This kind of messaging also serves the purpose of making communities understand how the DDR process will involve them. Most importantly, it serves to manage expectations, clearly defining what falls within and outside the scope of DDR. If the DDR process is made up of different combinations of DDR programmes, DDR-related tools or reintegration support, messages should clearly define who is eligible for what. Given that, historically, women and girls have not always received the same information as male combatants, as they may be purposely hidden by male commanders or may have \u2018self-demobilized\u2019, it is essential that PI/SC strategies take into consideration the specific information channels required to reach them. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to participate. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. In such sitatutions, strategic communications may be used to create the conditions for a successful DDR process. 2. To mitigate the negative impact of misinformation and disinformation (strategic communication): It is important to understand how conflict actors such as armed groups and other stakeholders respond, react to and/or provide alternative messages that are disseminated in support of the DDR process. In the volatile conflict and post-conflict contexts in which DDR takes place, those who profit(ed) from war or who believe their political objectives have not been met may not wish to see the DDR process succeed. They may have access to radio stations from which they can make broadcasts or may distribute pamphlets and other materials spreading \u2018hate\u2019 or messages that incite violence and undermine the UN and/or some of the (former) warring parties. These spoilers likely will have access to online platforms, such as blogs and social media, where they can easily reach and influence a large number of people. It is therefore critical that PI/SC extends beyond merely providing information to the public. A comprehensive PI/SC strategy shall be designed to identify and address sources of misinformation and disinformation and to develop tailored strategic communication interventions. Implementation should be iterative, whereby messages are deployed to provide alternative narratives for specific misinformation or disinformation that may hamper the implementation of a DDR process. 3. To sensitize members of armed forces and groups to the DDR process (strategic communication): Strategic communication interventions can be used to sensitize potential DDR participants. That is, beyond informing stakeholders, beneficiaries and participants about the details of the DDR process and beyond mitigating the negative impacts of misinformation and disinformation, strategic communication can be used to influence the decisions of individuals who are considering leaving their armed force or group including providing the necessary information to leave safely. The transformative objective of strategic communication interventions should be context specific and based on a concrete understanding of the political aspects of the conflict, the grievances of members of armed forces and groups, and an analysis of the potential motivations of individuals to join/leave warring parties. Strategic communication interventions may include messages targeting active combatants to encourage their participation in the DDR process, for example, stories and testimonials from ex-combatants and other positive DDR impact stories. They may also include communication campaigns aimed at preventing recruitment. The potential role of the national authorities should also be assessed through analysis and where possible, national authorities should lead the strategic communication. 4. To transform attitudes in communities so as to foster DDR (strategic communication): Reintegration and/or CVR programmes are often crucial elements of DDR processes (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration). Strategic communication interventions can help to create conditions that facilitate peacebuilding and social cohesion and encourage the peaceful return of former members of armed forces and groups to civilian life. Communities are not homogeneous entities, and individuals within a single community may have differing attitudes towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may simply be happy to be reunited with family members. The DDR process may also be negatively perceived as rewarding combatants. When necessary, strategic communication can be used as a means to transform the perceptions of communities and to combat stigmatization, hate speech, marginalization and discrimination against former members of armed forces and groups. Women and girls are often stigmatized in receiving communities and PI/SC can play a pivotal role in creating a more supportive environment for them. PI/SC should also be utilized to promote non-violent behaviour, including engaging men and boys as allies in promoting positive masculine norms (see IDDRS 5.10 on Women, Gender and DDR). Finally, PI/SC should also be used to destigmatize the mental health impacts of conflict and raise awareness of psychosocial support services.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0e2a4fcc-0bd2-4e98-9c74-9f42eec59002", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 10, - "Paragraph": "6. Planning and designing PI/SC strategies When designing a PI/SC strategy, DDR practitioners should take the following key factors into account: At what stage is the DDR process? Who are the primary and intermediary target audiences? Do these target audiences differ for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Who may not be eligible to participate in the DDR process? Does eligibility differ for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Are other, related PI/SC campaigns underway, and should these be aligned/deconflicted with the PI/SC strategy for the DDR process? What are the roles of men, women, boys and girls, and how have each of these groups been impacted by the conflict? What are the existing gender stereotypes and identities, and how can PI/SC strategies support positive change? Is there stigma against women and girls associated with armed forces and groups? Is there stigma against mental health issues such as post-traumatic stress? What are the literacy levels of the men and women intended to receive the information? What behavioural/attitude change is the PI/SC strategy trying to bring about? How can this change be achieved (taking into account literacy rates, the presence of different media, etc.)? What are the various networks involved in the dissemination of information (e.g., interconnections among social networks of ex-combatants, household membership, community ties, military reporting lines, etc.)? Which network members have the greatest influence? Do women and men obtain information by different means? (If so, which channels most effectively reach women?) In what language does the information need to be delivered (also taking into account possible foreign combatants)? What other organizations are involved, and what are their PI/SC strategies? How can the PI/SC strategy be monitored? What is the prevailing information situation? (What are the information needs?) What are the sources of disinformation and misinformation? Who are the key local influencers/amplifiers? What dominant media technologies are in use locally and by which population segments/demographics?", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "7b6a74d8-24f7-4388-acb2-d4be223cd49e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 11, - "Paragraph": "6.1 Understanding the local context and \u2018do no harm\u2019 considerations To ensure that the DDR PI/SC strategy fits local needs, DDR practitioners should understand the social, political and cultural context and identify factors that shape attitudes. It will then be possible to define behavioural objectives and design messages to bring about the required social change. Target audience and issue analysis must be adopted to provide a tailored approach to engage with different audiences based on their concerns, issues and attitudes. During the planning stage, the aim should be to collect the following minimum information to aid practitioners in understanding the local context: Conflict analysis, including an understanding of local ethnic, racial and religious divisions at the national and local levels; Gender analysis, including the role of women, men, girls and boys in society, as well as the gendered power structures in society and in armed forces and groups; Media mapping, including the geographic reach, political slant and cost of different media; Social mapping to identify key influencers and communicators in the society and their constituencies (e.g., academics and intelligentsia, politicians, youth leaders, women leaders, religious leaders, village leaders, commanders, celebrities, etc.); Traditional methods of communication; Cultural perceptions of the disabled, the chronically ill, rape survivors, extra-marital childbirth, mental health issues including post-traumatic stress, etc.; Literacy rates; Prevalence of intimate partner violence and sexual and gender-based violence; and Cultural moments and/or religious holidays that may be used to amplify messages of peace and the benefits of DDR. Partners in the process also need to be identified. Particular emphasis \u2013 especially in the case of information directed at DDR participants, beneficiaries and communities \u2013 should be placed on selecting local theatre troops and animators who can explain concepts such as DDR, reconciliation and acceptance using figurative language. Others who command the respect of communities, such as traditional village leaders, should also be brought into PI/SC efforts and may be asked to distribute DDR messages. DDR practitioners should ensure that partners are able and willing to speak to all DDR participants and beneficiaries and also to all community members, including women and children. Two additional context determinants may fundamentally alter the design and delivery of the PI/SC intervention: The attitudes of community members towards ex-combatants, women and men formerly associated with armed forces and groups, and youth at risk; and The presence of hate speech and/or xenophobic discourse. In this regard, DDR practitioners shall have a full understanding of how the open communication and publicity surrounding a DDR process may negatively impact the safety and security of participants, as well as DDR practitioners themselves. To this end, DDR practitioners should continuously assess and determine measures that need to be taken to adjust information related to the DDR process. These measures may include: Removing and/or amending specific designation of sensitive information related to the DDR process, including but not limited to the location of reception centres, the location of disarmament and demobilization sites, details related to the benefits provided to former members of armed forces and groups, and so forth; and Ensuring the protection of the privacy, and rights thereof, of former members of armed forces and groups related to their identity, ensuring at all times that permission is obtained should any identifiable details be used in communication material (such as photo stories, testimonials or ex-combatant profiles).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b1ca7a24-ed39-4c7f-afa2-02dcaf88a6cc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 12, - "Paragraph": "6.2 Communicating about former members of armed forces and groups It is very important to pay attention to the language used in reference to DDR. This includes messaging about the process of disarmament and the \u2018surrender\u2019 of weapons, as well as the terms and expressions used to speak about and to ex-combatants and persons formerly associated with armed forces and groups. It is necessary to acknowledge that they are not naturally violent; that they might have left a lot behind in terms of social standing, respect and income in their armed group; and that therefore their return to civilian life may come with great economic and social sacrifices. The self-perception of former members of armed forces and groups (e.g., as revolutionaries or liberty fighters) also needs be understood, taken into consideration and, in some cases, positively reinforced to ensure their buy-in to the DDR process. Taking these sensitives into account may sometimes include the need to reprofile the language used by Government and local or even international media. It is of vital importance, especially when it comes to the prospect of reintegration, that the discourse used to talk about ex-combatants and persons formerly associated with armed forces and groups is not pejorative and does not reinforce existing stereotypes or community fears. Communicating about former members of armed forces and groups is also important in contexts where transitional justice measures are underway. The strategic communication and public information elements of supporting transitional justice as part of a DDR process (including, truth telling, criminal prosecutions and other accountability measures, reparations, and guarantees of non-recurrence) should be carefully planned (see IDDRS 6.20 on DDR and Transitional Justice). PI/SC campaigns should be designed to complement transitional justice interventions, and to manage the expectations of DDR participants, beneficiaries and communities. When transitional justice measures are visibly and publically integrated into DDR processes, this may help to ensure that grievances are addressed and demonstrate that these grievances were heard and taken into account. The visibility of these measures, in turn, contribute to improving the the prospects of social cohesion and receptibility between ex-combatants and communities.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2076bdaa-9eb2-475d-87e3-300041875fd1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 13, - "Paragraph": "6.3 The preparation of PI/SC material While a PI/SC strategy is being prepared, other public information resources can be activated. In mission settings, ready-made public information material on peacekeeping and the UN\u2019s role can be distributed. However, DDR practitioners should be aware that most DDR-specific material will be created for the particular country where DDR will take place. Production of PI/SC material is a lengthy process. The time needed to design and produce printed sensitization tools, develop online content, and establishing dissemination channels (such as radio stations) should be taken into account when planning the schedule for PI/SC activities. Certain PI/SC materials may take less time to produce, such as digital communication; basic pamphlets; DDR radio programmes for broadcasting on non-UN radios; interviews on local and international media; and debates, seminars and public theatre productions. Pre-testing of PI/SC materials must also be included in operational schedules. In addition to these considerations, the strategy should have a coherent timeline, bearing in mind that while some PI/SC activities will continue throughout the DDR process, others will take place at specific times or during specific phases. For instance, particularly during reintegration, SC activities may be oriented towards educating communities to accept DDR participants and to have reasonable expectations of what reintegration will bring, as well as ensuring that survivors of sexual violence and/or those living with HIV/AIDS are not stigmatized and that connections are made with ongoing security sector reform, including arms control, police and judicial reform.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "9403e65d-80cf-4187-b28a-d20af7b45648", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 13, - "Paragraph": "6.4 Hate speech and developing counter-narratives Measures must be developed that, in addition to addressing misinformation and disinformation, challenge hate speech and attempt to mitigate its potential impacts on the DDR process. If left unchecked, hate speech and incitement to hatred in the media can lead to atrocities and genocide. In line with the United Nations Strategy and Plan of Action on Hate Speech, there must be intentional efforts to address the root causes and drivers of hate speech and to enable effective responses to the impact of hate speech. Hate speech is any kind of communication in speech, writing, or behaviour that attacks or uses pejorative or discriminatory language with reference to a person or a group on the basis of who they are, in other words, based on their religion, ethnicity, nationality, race, colour, descent, gender or other identifying factor. Hate speech aims to exclude, dehumanize and often legitimize the extinction of \u201cthe Other\u201d. It is supported by stereotypes, enemy images, attributions of blame for national misery and xenophobic discourse, all of which aim to strip the imagined Other of all humanity. This kind of communication often successfully incites violence. Preventing and challenging hate speech is vital to the DDR process and sustainable peace.\t Depending on the nature of the conflict, former members of armed forces and groups and their dependants may be the targets of hate speech. In some contexts, those who leave armed groups may be perceived, by some segments of the population, as traitors to the cause. They or their families may be targeted by hate speech, rumours, and other means of incitement to violence against them. As part of the planning for a DDR process in contexts where hate speech is occurring, DDR practitioners shall make all necessary efforts to include counter-narratives in the PI/SC strategy. These measures may include the following: Counter hate speech by using accurate and reliable information. Include peaceful counter-narratives in education and communication skills training related to the DDR process (e.g., as part of training provided during reintegration support). Incorporate media and information literacy skills to recognize and critically evaluate hate speech when engaging with communities. Include specific language on hate speech in DDR policy documents and/or related legislation. Include narratives, stories, and other material that rehumanize ex-combatants and persons formerly associated with armed forces and groups in strategic communication interventions in support of DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "a8ce81a0-7b16-431f-87bf-7cf830f8b006", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 14, - "Paragraph": "6.5 Gender-sensitive PI/SC in support of DDR PI officers and gender officers shall work closely together in the formulation of PI/SC strategies for DDR processes, drawing on existing gender analysis, and conducting additional gender assessments as required. Doing so allows the PI/SC strategy to support gender-equitable norms, to promote women\u2018s empowerment and non-violent versions of masculinities, and to combat stigma and socialization to violence (see IDDRS 5.10 on Women, Gender and DDR). One of the most critical PI/SC objectives in DDR is reaching WAAFAG and informing them of their eligibility. Ensuring that women are well represented in all PI materials helps prevent their exclusion from DDR processes. Engaging women early in the development and testing of PI messaging is essential to ensuring that communication materials and approaches respond to the specific needs and capacities of women and girls. Recognizing women\u2019s roles in peacebuilding and social cohesion, and utilizing opportunities to actively engage them in disseminating PI messages, is essential. Sensitization activities can provide an important entry point to address the gender dimensions of violence early in the DDR process. PI activities should capitalize on lessons already learned about how to implement gender-responsive PI campaigns geared towards men. For example, showing male leaders and male youth as strong and non-violent, and men as engaged fathers and partners with females in the community, can help to support both men and boys as well as women and girls. Through these approaches, PI/SC can support broader gender equality work in the country, ensuring that campaign messages, visuals, and awareness raising activities incorporate gender transformative messages including supporting women\u2019s empowerment, men\u2019s role as fathers, and non-violent, demilitarized forms of masculinities. PI/SC interventions and tools should include messaging on: Women\u2019s and men\u2019s roles as leaders working in partnership; Demilitarization of masculinities; Positive gender norms, including men\u2019s roles in communities as fathers; Destigmatization of psychosocial support services and individuals dealing with post-traumatic stress; Promotion of non-violent behaviour; Destigmatization of female combatants, females associated with armed forces and groups and their children, and male combatants; Men\u2019s and women\u2019s mutual responsibility and awareness around reproductive health and HIV/AIDS; Women\u2019s empowerment; and Destigmatization of victims/survivors of sexual violence and their children.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "c62c2490-0c72-477b-981c-c37186858517", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 15, - "Paragraph": "6.6 Anti-stigma and mental health PI/SC in support of DDR Given the psychological impact of conflict on ex-combatants and persons associated with armed forces and groups, as well as survivors and conflict-affected communities, it is essential for PI/SC to support anti-stigma campaigns and programmes, and to disseminate accurate and reliable information on ways to access support (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). PI/SC should draw on assessments and mapping of services and be developed in collaboration with health authorities, ensuring continuous access to information on the availability of assistance as well as clear referral pathways (clincs, servies, hotlines etc). Anti-stigma campaigns should include messaging on normalizing the mental health impacts of conflict on both men and women and fostering support for individuals and communities. In conflict settings, one person in five is living with some form of mental disorder, from mild depression or anxiety to psychosis. In this regard, PI/SC should avoid targeting or singling out DDR participants as the impact of conflict extends further than those who actively participated in combat. Interventions may include radio programmes, public service announcements, community theatre or seminars, print media, and other outlets as outlined in section 8.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "196a0f2b-a241-493a-8382-65e4ef83fd17", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 16, - "Paragraph": "7. Stakeholders or target audiences The planning and implementation of the PI/SC strategy shall acknowledge the diversity of stakeholders involved in the DDR process and their varied information needs. The PI/SC strategy shall also be based on integrated conflict and security analyses (see IDDRS 3.11 on Integrated Assessments). As each DDR process may contain different combinations of DDR programmes, DDR-related tools and reintegration support, the type of DDR process under way will influence the stakeholders involved and the primary and secondary audiences, and will shape the nature and content of PI/SC activities. The intended audience(s) will also vary according to the phase of the DDR process and, crucially, the changes in people\u2019s attitudes that the PI/SC strategy would like to bring about. What follows is therefore a non-exhaustive list of the types of target audiences most commonly found in a PI/SC strategy for DDR:", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "ad2238a3-a196-4f8f-937e-9ef510638075", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "7.1 Primary audience (participants and beneficiaries) The following stakeholders are often the primary audience of a DDR process: The political leadership: This may include the signatories of ceasefires and peace accords, when they are in place. Political leaderships may or may not represent the military branches of their organizations. The military leadership of armed forces and groups: These leaders may have motivations and interests that differ from the political leaderships of these entities. Likewise, within these military leaderships, mid-level commanders may hold their own views concerning the DDR process. DDR practitioners should recognize that the rank-and-file members of armed forces and groups often receive information about DDR from their immediate commanders, who may have incentives to provide disinformation about DDR if they are reluctant for their subordinates to leave military life. Rank-and-file of armed forces and groups: It is important to make the distinction between military leaderships, military commanders, mid-level commanders and their rank-and-file, because their motivations and interests may differ. Testimonials from the successfully demobilized and reintegrated rank-and-file have proven to be effective in informing their peers. Ex-combatants and persons formerly associated with armed forces and groups can play an important role in amplifying messages aimed at demonstrating life after war. Women associated with armed groups and forces in non-combat roles: It is important to cater to the information needs of WAAFAG, especially those who have been abducted. Communities, particularly women\u2019s groups, should also be informed about how to further assist women who manage to leave an armed force or group of their own accord. Children associated with armed forces and groups: Individuals in this group need child-friendly, age- and gender-sensitive information to help reassure and safely remove those who are illegally held by an armed force or group. Communities, local authorities and police should also be informed about how to assist children who have exited or been released from armed groups, as well as about protocols to ensure the protection of children and their prompt handover to child protection services. Ex-combatants and persons formerly associated with armed forces and groups with disabilities: Information and sensitization to opportunities to access and participate in DDR should reach this group. Families and communities should also be informed on how to support the reintegration of persons with disabilities. Youth at risk of recruitment: In countries affected by conflict, youth are both a force for positive change and, at the same time, a group that may be vulnerable to being drawn into renewed violence. When PI/SC strategies focus only on children and mature adults, the specific needs and experiences of youth are missed. Local authorities and receiving communities: Enabling the smooth reintegration of DDR participants into their communities is vital to the success of DDR. Communities and their leaders also have an important role to play in other local-level DDR activities, such as CVR programmes and transitional WAM as well as community-based reintegration support.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b46a13ee-1e29-46c8-a6c2-7813c90caf31", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "7.2 Secondary audience (partners) In many cases, partnerships with other stakeholders are required to support the design, planning and implementation of the PI/SC strategy. The following partners are often the secondary audience of a DDR process; however, depending on the context, they may also be the primary audience (e.g., the international community in a regionalized armed conflict): Civil society: This includes women\u2019s groups, youth groups, local associations and non-governmental organizations that play a role in the DDR process, including those working as implementing partners of national and international governmental institutions. Religious leaders and institutions: The voices of moderate religious leaders can be amplified and coordinated with educators to foster coordination and promote messages of peace and tolerance. Legislative and policy-setting authorities: The legal framework in the country regulating the media can be reviewed and laws put in place to prevent the distribution of messages inciting hate or spreading misinformation. If this approach is used, care must be taken to ensure that civil and political rights are not affected. International and local media: International and local media are often the main source of information on progress in the peace process. Keeping both media segments supplied with accurate and up-to-date information on the planning and implementation of DDR is important in order to increase support for the process and avoid bad press. The media are also key whistleblowers that can identify, expose and denounce potential spoilers of the peace process. Private sector: Companies in the private sector can also be important amplifiers and partners, for example, by generating specific recruitment advertisements in support of reintegration opportunities. Local telecommunication companies and internet service providers can also offer avenues to further disseminate key messages. Opinion leaders/influencers: In many contexts, opinion leaders are public personalities who actively produce and interpret multiple sources of information to form an opinion. With the advent of social media, these actors generate viewership and large followings through regular programming and online presence. Regional stakeholders: These include Governments, regional organizations, military and political parties of neighbouring countries, civil society in neighboring States, businesses and potential spoilers. The international community: This includes donors, their constituencies (including, if applicable, the diaspora who can influence the direction of DDR), troop-contributing countries, the UN system, international financial institutions, non-governmental organizations and think tanks.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "aa97f9e1-5493-4e25-b1d5-29083aec6702", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8. Media This section outlines the various media that can be used in PI/SC strategies and the advantages and disadvantages associated with each. In both mission and non-mission settings, DDR practitioners should proactively identify PI/SC capacities to support national counterparts that are leading the process. Most peacekeeping operations include a PI/SC office with the following work streams and skill sets: media relations, multimedia and content production, radio content or station, and an outreach and campaigns unit. It is important for DDR practitioners to keep in mind that former members of armed forces and groups are not usually a standard target audience within a mission\u2019s PI/SC strategy. They may therefore need to engage with the PI/SC office in order for this group to be considered. In non-mission settings, DDR practitioners may seek out partnerships with relevant organizations or explore the possibility of bringing on board or working with existing PI/SC personnel. For example, most agencies, funds and programmes within the UN country team maintain communications officers or individuals with similar job profiles. In all contexts, local advisers shall be consulted. Once created, PI/SC messages and activities can be channeled using the various media outlined below. The selection of media type should be based on a thorough analysis of the geographic availability of that media, as well as which form of media best suits the content to be disseminated.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bbe6ad31-d1a0-4e19-af25-82901e9952ee", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8.1 Online and web presence When internet access is widespread, online tools (videos, dedicated websites, podcasts, social media campaigns, etc.) are important. Social media campaigns should be considered as they represent a low-resource way of reaching a large audience.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "477a1ff8-1a27-4464-a8a0-10a4d9080705", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8.2 Local, national and international radio stations When compared with other media, the advantage of radio is that it often reaches the largest number of people, particularly in developing countries. This is because radio is less dependent on infrastructural development or the technological sophistication and wealth of the listener. It can also reach those who are illiterate. However, it should not be assumed that women (and children) have the same access to radio as men, especially in rural areas, since they may not have the resources to buy either the radio or batteries. A DDR radio programme can assist in providing updates on the DDR process (e.g., the opening of demobilization sites and inauguration of reintegration projects). It can also be used to disseminate messages targeting women and girls (to encourage their participation in the process), as well as children associated with armed forces and groups (for e.g., on the consequences of enlisting or holding children). Radio messages can also support behavioural change programming, for example, by destigmatizing mental health needs (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). Some peacekeeping missions have their own UN Radio stations. In contexts where this is not the case, DDR practitioners should explore partnerships with the private sector and/or civil society.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "455645d4-8800-4bc2-9c90-455c8579a6ef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.3 Print media Print media may include leaflets, pamphlets, posters/cartoons, newsletters and magazines. Although the effectiveness of these various formats will be limited by the literacy of the intended audience, their main advantage is the durability and level of detail that printed information can contain. The added benefit of print media is that it can be passed from person to person in close-knit networks, increasing the potential impact of the content as it comes from a trusted source.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c7fd84e9-cf3d-4f9c-9036-90386a44a939", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.4 Visual media: television, film and billboards In countries where television is the most popular way of distributing information, it is essential that this medium is used, even if in a limited way. Some peacekeeping missions have established their own UN TV stations on a dedicated broadcasting frequency, while others have made arrangements to broadcast films, documentaries or other programming on existing public or private stations. The scheduling and frequency of broadcasts must be carefully planned to respond to the needs of the widest possible audience. Where cultural restrictions prevent women from watching films in public, alternatives, such as a women-only screening, should be negotiated. Billboards should not be overlooked as an effective tool for advertising DDR activities and/or achievements, as, when strategically positioned, they can reach a significant number of people.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b66c1e47-f4a2-4fba-95be-4f356a1e9162", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.5 Interactive forums: theatre, seminars, debates Although the main impact of theatre productions, seminars and debates may be on their direct audience, oral forms of communication have the advantage of involving the audience and building on existing cultural norms. Presenting ideas and concepts figuratively, especially if based on local folklore, culture and humour, can be particularly useful in communities with a strong oral culture. Interactive opportunities like this also afford critical opportunities to support equitable and positive gender norms, destigmatize mental health, and foster peacebuilding and social cohesion. These interactive mechanisms may also help to build social cohesion and work through trauma.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0528bb9d-3817-49a4-8027-b8f16b09dde0", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.6 Local townhall events Local townhall events that are open to the public can offer a platform for dialogue with communities. They can serve as a wider peacebuilding platform using participatory methods to solicit input from affected populations. They can also provide the opportunity to pre-test messages on a small scale to ascertain their impact and reception before wider use and dissemination.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "064a202d-a11b-4a84-8a1f-28b6ab9f2770", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.7 Hotlines Hotlines can be a useful tool to inform DDR participants and beneficiaries about the development of the DDR process. Hotlines should be free of charge and can foster the engagement of the target audience and provide information and clarification on the DDR process.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5a4b9f69-a62b-4d09-9204-c0dc5ba83aca", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.8 Augmented and virtual reality Augmented and virtual reality techniques can allow partners, donors and members of the general public who are unfamiliar with DDR to immerse themselves in a real-life setting \u2013 for example, walking the path of an ex-combatant as he/she leaves an armed group and participates in a DDR process.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8c37366e-5058-4092-871a-3105f26572da", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.9 Gamification Gamification involves the application of typical elements of game playing (e.g., point scoring, competition with others, rules of play) to other areas of activity, typically as an interactive and social technique to encourage engagement with a topic, such as DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b5f1162a-dd05-4d7a-81c4-00c433cf93cd", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "9. Monitoring and evaluation From the start, it is important to identify measurable indicators (the pieces of information that will show whether objectives are being met) as well as how this information will be gathered (sources and techniques) in order to monitor and evaluate the impact of the PI/SC strategy. Any aspects of the PI/SC strategy that do not have the effect they were designed to achieve shall be adapted. Indicators may include: The number, sex, age and location (e.g, rural or urban) of people listening to radio programmes and consulting other media, including websites and social media, that convey messages regarding DDR; The number of participants and beneficiaries engaging in the DDR process as a result of PI/SC activities; The extent of the involvement of the local civilian population in reintegration programmes as a result of PI/SC efforts; and The change in expectations and knowledge about the process among target audiences before and after PI/SC activities. This information can be gathered through surveys and interviews conducted throughout the implementation of the DDR process and also from the activity reports of other organizations, media reports, staff at the demobilization sites, local civil society actors in the communities, etc. Findings should be used to guide and shape ongoing activities and contribute to improving future efforts. For further information, refer to IDDRS 3.50 on Monitoring and Evaluation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b3b096d4-d4f4-4068-bcaf-2e72973f9f2e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.20 Children and DDR Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026... 1 1. Module scope and objectives \u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 2 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 3 4. Guiding principles \u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 4 4.1 Voluntary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 4 4.2 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.3 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.5 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 7 4.6 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 7 4.7 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026.\u2026 7 4.8 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 8 4.9 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 8 4.10 Well planned ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 8 5. Normative legal frameworks \u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 10 5.1 International Human Rights Law.. 5.2 International Humanitarian Law\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202612 5.3 International Criminal Law\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.12 5.4 UN Security Council resolutions: engagement with armed forces and groups\u2026....\u2026\u2026\u2026\u2026. 13 5.5 International Standards \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026.\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026.\u202613 6. Planning and Designing DDR processes for children \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..14 6.1 Assessments: Context analysis \u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026 14 6.2 Minimum preparedness actions \u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026.. 17 6.3 Data \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026. 16 7. Prevention of recruitment and re-recruitment of children \u2026.\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 18 7.1 Identification and documentation of risks of (re-)recruitment \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 19 7.2 Prevention of recruitment through the creation of a protective environment \u2026\u2026\u2026\u2026\u2026\u2026\u2026 20 8. Child sensitive approaches to DDR\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 23 8.1 Disarmament \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 23 8.2 Demobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 24 8.3 Interim alternative care\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 25 8.4 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 27 8.5 Reintegration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026. 27 9 Criminal responsibility and accountability ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026. 40 9.1 Children as victims\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 40 9.2 Minimum age of criminal responsibility\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.\u2026\u2026\u2026\u2026\u2026 40 9.3 Juvenile justice and child-specific due process and minimum standards\u2026\u2026 \u2026.\u2026\u2026.\u2026\u2026\u2026 41 9.4 Children associated with armed groups designated by the UN as terrorist organizations ..\u2026 42 9.5 Collecting testimonies from children .\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 44 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 44 Annex B: Determining a child\u2019s age \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026.. 44 Annex C: Management guidelines for interim care centres ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 47 Annex D: Do\u2019s and don\u2019ts for mental health and psychosocial support in emergency settings...50 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...53 5.20 Children and DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "98d6481f-0b50-428f-985b-aef2b51ea475", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Summary The recruitment of children \u2013 girls and boys under the age of 18 \u2013 and their use in hostilities or for other purposes by armed forces and groups is illegal. It is also one of the worst forms of child labour and exploitation. Efforts to prevent the recruitment of children into armed forces and groups should be a primary consideration during all DDR processes. Prevention efforts should start early\u2014when possible, they should commence prior to armed conflict\u2014and they should take place continuously throughout the conflict, with careful consideration given to the structural, social and individual factors associated with the risk of recruitment and re-recruitment. Irrespective of how children were recruited, the unconditional and immediate release of children associated with armed forces and groups (CAAFAG) shall be required. Any person under 18 years old must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR processes. Nonetheless, where relevant, peace processes, including peace agreements and DDR policy documents, offer an opportunity to highlight the needs of children affected by armed conflict and to ensure that actions and funding streams to support child-specific processes are included. The commitment to stop the recruitment and use of children and to release children from armed forces and groups shall be explicit within peace agreements. DRR processes shall be specific to the needs of children and apply child-sensitive and gender-transformative approaches to planning, implementation, and monitoring. As such, children shall be separated from armed forces and groups, handed over to child protection actors and supported to demobilize and reintegrate into families and communities. DDR practitioners and relevant child protection actors shall work together to design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, that help children to recover and reintegrate into their communities, and that take into account differences in age and gender needs. DDR practitioners should promote agency of children, enabling their right to participate in decision-making and shape DDR processes in line with their concerns/needs. The specific needs of children formerly associated with armed forces and groups during reintegration are multisectoral, as boys and girls often require support in (re)accessing education, an alternative livelihood, medical and mental health services, including reproductive health services and sexual violence recovery services, as well as other services that promote life skills and help them establish a meaningful role in society. Child-sensitive approaches to reintegration support should be focused on long-term and sustainable opportunities for children formerly associated with armed forces and groups that are gender- and age-sensitive. For sustainability, and to avoid tension, stigmatization or envy when a child is returned, DDR practitioners should ensure that broader community development processes are also considered DDR practitioners should also be aware that\u00a0no child below the minimum age of criminal responsibility (MACR) should be investigated, prosecuted, or deprived of their liberty for any offence, including security and terrorism-related offences, in line with the provisions of the Convention on the Rights of the Child. The Committee on the Rights of the Child encourages States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. Children, above the age of criminal responsibility, who are suspected of committing a serious crime, shall be handed over to civilian actors, and justice should be provided within juvenile justice frameworks. During all processes they shall be treated primarily as victims and as survivors of grave violations of their rights. Any investigation or determination of culpability shall be handled by trained civilian actors, including, where relevant, trained juvenile justice actors and made based on processes consistent with applicable international child rights standards, including the Convention on the Rights of the Child, and internationally recognized juvenile justice standards and principles, due process and fair trial standards, prioritizing the child\u2019s recovery, reintegration, and best interests in all decisions.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "9cbae31e-ca86-46df-87cb-66b437ff2dcb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module aims to provide DDR practitioners and child protection actors with guidance on the planning, design and implementation of DDR processes for CAAFAG in both mission and non-mission settings. The main objectives of this guidance are: To set out the main principles that guide all aspects of DDR processes for children. To outline the normative legal framework that applies to children and must be integrated across DDR processes for children through planning, design, implementation and monitoring and evaluation. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of children into armed forces and groups. To provide guidance on child- and gender-sensitive approaches to DDR highlighting the importance of both individualized and community-based approaches. To highlight international norms and standards around criminal responsibility and accountability in relation to CAAFAG. This module is applicable to all CAAFAG but should be used in conjunction with IDDRS 5.30 on Youth and DDR. IDDRS 5.30 provides guidance on children who are closer to 18 years of age. These children, who are likely to enter into employment and who have socio-political reintegration demands, especially young adults with their own children, require special assistance. The challenge of demobilizing and reintegrating former combatants who were mobilized as children and demobilized as adults is also covered in IDDRS 5.30. In addition, this module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "da056dc2-f112-4d98-933c-930c6f180836", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; and, e) \u2018must\u2019 is used to indicate an external constraint or obligation. Children associated with armed forces or armed groups refers to persons below 18 years of age who are or who have been recruited or used by an armed force or group in any capacity, including but not limited to children, boys or girls, used as fighters, cooks, porters, messengers, spies or for sexual purposes. This term is used in the Paris Principles and is used here instead of the term \u2018child soldiers\u2019 because it more inclusively recognizes children who perform not only combat roles but also support or other functions in an armed force or group. Child recruitment refers to compulsory, forced and any other conscription or enlistment of children into any kind of armed force or armed group. This can include recruitment by communities, coerced recruitment, or abductions into armed forces and groups. The definition is purposefully broad and encompasses the possibility that any child recruitment may be coerced, forced, or manipulated based on the child\u2019s circumstances and may appear voluntary. Unlawful recruitment or use is recruitment or use of children under the age stipulated in the international treaties applicable to the armed force or group in question or under applicable national law. The Optional Protocol on the Involvement of Children in Armed Conflict (OPAC) bans recruitment of children under 15 and requires States to take all possible measures to prevent recruitment of children under 18 including the adoption of legal measures necessary to prohibit and criminalize such practices. It also bans all recruitment and use of children by armed groups. The Convention on the Rights of the Child (CRC), the Geneva Conventions and the Rome Statute ban recruitment of children under age 15. Release includes the process of formal and controlled disarmament and demobilization of children from an armed force or group, as well as the informal ways in which children leave by escaping, being captured or any other means. It implies a disassociation from the armed force or group and the beginning of the transition from military to civilian life. Release can take place during a situation of armed conflict; it is not dependent on the temporary or permanent cessation of hostilities. Release is not dependent on children having weapons to forfeit. Reintegration of children is the process through which children transition into society and enter meaningful roles and identities as civilians who are accepted by their families and communities in a context of local and national reconciliation. Sustainable reintegration is achieved when the political, legal, economic and social conditions needed for children to maintain life, livelihood and dignity have been secured. The reintegration process aims to ensure that children can access their rights, including formal and non-formal education, family unity, dignified livelihoods and safety from harm.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "4d6b8d34-f136-4a9e-9996-861ad7ecf0d5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 5, - "Paragraph": "3. Introduction All child recruitment or use by armed groups is illegal under international law (OPAC Article 4), as is all use of children in hostilities (OPAC Article 1), conscription by state armed forces (OPAC Article 2, International Convention on the Worst Forms of Child Labour (ILO Convention (No. 182)), or enlistment of children without appropriate safeguards (OPAC Article 3). All child recruitment and use into armed forces is also illegal for those State parties to the Operational Protocol to the Convention Against Torture. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child protection. DDR processes, including release and reintegration support for children, shall therefore prioritize prevention, separation of children from armed forces or groups, and redress of this human rights violation. DDR processes shall be specific to the needs of children and apply child- and gender-sensitive approaches. This module provides critical guidance for DDR practitioners and child protection actors on how to work together to plan, design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, as well as help children to recover and reintegrate children into their families and communities. The guidance recognizes that the needs of children formerly associated with armed forces and groups during reintegration are multisectoral and different than those of adults. Child-sensitive approaches require DDR practitioners and child protection actors to tailor interventions to meet the specific needs of individual boys and girls, but also to target other conflict-affected or at-risk children within the broader community in which children are reintegrating. Finally, the module recognizes that children, as victims of recruitment and use, should not be prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, and notes that children who have reached the MACR and who may have committed criminal acts shall be afforded the protections to which they are entitled, including their rights to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to children and DDR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f41dd15f-c310-4410-9c60-4c38b5c1664f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children are entitled to release from armed forces and groups at all times, without pre-condition. Processes for planning and implementing DDR processes shall not delay demobilization or other forms of release of children. Given their age, vulnerability and child-specific needs, during DDR processes, children shall be separated from armed forces and groups and handed over to child protection actors and supported to demobilize and reintegrate into families and communities in processes that are separate from those for adults, according to their best interests. While it is critical that children be supported, they shall not be pressured to wait for or to participate in release processes. They shall also not be removed from their families or communities to participate in DDR processes unless it has been determined to be in their best interest. Their decision to participate shall voluntary and based on informed consent.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5f0c2c66-10c8-409d-b1dc-5fdcc28368f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Children can be associated with armed forces and groups in a variety of ways, not only as combatants, so some may not have access to weapons or ammunition. This is especially true for girls who are often used for sexual purposes, as wives or cooks, but may also be used as spies, logisticians, fighters, etc. DDR practitioners shall recognize that all children must be released by the armed forces and groups that recruited them and receive reintegration support. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B). In cases where there is no proof of age, or inconclusive evidence, the child shall have the right to the rule of the benefit of the doubt.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "2e2ad41d-78bf-41cc-bfce-2cb66efbeec1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A dependent child of an ex-combatant shall not automatically be considered to be associated with an armed force or group. However, armed forces or groups may identify some children, particularly girls, as dependents, including as wives, when the child is an extended family member/relative, or when the child has been abducted, or otherwise recruited or used, including through forced marriage. A safe, child- and gender-sensitive individualized determination shall be undertaken to determine the child\u2019s status and eligibility for participation in a DDR process. DDR practitioners and child protection actors shall be aware that, although not all dependent children may be eligible for DDR, they may be at heightened vulnerability and may have been exposed to conflict-related violence, especially if they were in close proximity to combatants or if their parents are ex-combatants. These children shall therefore be referred for support as part of wider child protection and humanitarian services in their communities.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6365d59e-ace4-41b9-93e0-b06d47cb8001", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of children associated with armed forces or armed groups, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are dependents rather than associated children, gendered barriers to information and sensitization, or fear by armed forces and groups of admitting to the presence of girls.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5c1bf8c7-8d88-4cf8-861e-fcc5c08c6ff0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or security sector reform (SSR) process is established.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cf0f19c2-54f1-4e6c-9b98-8b3ed71ab572", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and are therefore excluded from support linked to DDR. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, diplomatic missions, mediators, donors and representatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "70b7244f-a061-401f-8408-21d5dc096cd7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.2.3 In accordance with standards and principles of humanitarian assistance DDR processes shall respect the principles of international humanitarian law and promote the human rights of DDR participants, including children, and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting children and families therefore, care shall be taken to assess the possible impact of measures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall enhance the safety, dignity, and rights of people, and avoid exposing them to harm, provide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "3d06c314-6058-4b3b-85db-ace3d6fcab81", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Conflict harms all children, whether they have been recruited or not. An inclusive approach that provides support to all conflict-affected children, including girls, particularly those with vulnerabilities that place them at risk of recruitment and use, shall be adopted to address children\u2019s needs and to avoid the perception that CAAFAG are being rewarded for association with an armed force or group. Gender-responsive approaches recognize the unique and specific needs of boys and girls, including the need for both to have access to sexual violence recovery services, emotional skill development and mental health and psychosocial support. Non-discrimination and fair and equitable treatment are core principles of DDR processes. Children shall not be discriminated against due to age, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations they or their families may hold. Based on their needs, CAAFAG shall have access to the same opportunities irrespective of the armed force or group with which they were associated. Non-discrimination also requires the establishment of mechanisms to enable those CAAFAG who informally leave armed forces or groups to access child-sensitive DDR processes (see section 4.1).", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "fcc9867f-af96-47c3-a25c-dc01fa1d84ff", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A conflict sensitive approach ensures that children associated with different groups and forces shall have equal access to and benefit from programmes. Additionally, opportunities to promote peacebuilding and social cohesion through child protection support services and activities shall be leveraged to fortify and build stronger connections between children, irrespective of the armed group or force with which they were previously traveling or associated. DDR practitioners shall ensure that no harm is done to children or their families. Rather, they shall seek to maximize any benefits to children, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for children, disaggregating data by age, gender and vulnerabilities of the child, while keeping such data protected; and Listening to and considering the voices and views of children in the planning, design, implementation and review of DDR processes.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "f0e7e548-0347-45f8-9cb9-312d294f102f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners shall recognize that each conflict context is different, with its own social, political, cultural, economic, gender and other dynamics, and that girls and boys have different needs and capacities. These specificities also require DDR practitioners to recognize that the mechanisms for consultation and engagement may differ by context, hence requiring tailored strategies. There is no simple formula that can be applied in all circumstances.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "764d729a-b547-4935-963c-eb8c99410e23", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset. DDR practitioners and specialized child protection actors shall be called upon for the necessary political, technical and operational leadership within the Government and within the framework of the UN mission or the UN Country Team.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "61b5778a-ada7-4889-848e-8c72a88c4c21", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners and child protection actors shall reaffirm the importance of and respect the best interests of the child and require project staff to be accountable to children and their caregivers.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2eaa8aa0-24b5-44bb-b74d-aa7f258ca2be", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR processes for children shall link to national and local structures for child protection with efforts to strengthen institutions working on child rights and advocacy. DDR processes for children require a long implementation period and the long-term success of DDR processes depends on and correlates to the capacities of local actors and communities. These capacities shall be strengthened to support community acceptance and local advocacy potential.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cfb4360b-c97b-4adb-a4cd-9bf547856e4e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Participatory and decentralized consultation should be encouraged so that common strategies, responsive to local realities, can be designed. National frameworks, including guiding principles, norms and procedures specific to the local and regional context, shall be established. Clear roles and responsibilities, including engagement and exit strategies, shall be agreed upon by all actors. All such consultation must ensure that the voices of children, both boys and girls, are heard and their views are incorporated into the design of DDR processes. As social norms may influence the ability of children to speak openly and safely, DDR practitioners shall consult with experts on child participation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "a68c6cc3-c822-4c7b-afff-203abbe3ef7e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "To ensure long-term sustainability, Government should be a key partner/owner in DDR processes for children. The level of responsibility and national ownership will depend on the context and/or the terms of the peace accord (if one exists). Appropriate ministries, such as those of education, social affairs, families, women, labour, etc., as well as any national DDR commission that is set up, shall be involved in the planning and design of DDR processes for children. Where possible, support should be provided to build Government capacity on child protection and other critical social services.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b2c9d38d-1c8f-47b0-a13a-8ce19c9a4342", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.8 Regionally supported Where appropriate, DDR practitioners shall consider regional initiatives prohibiting and responding to the recruitment and use of CAAFAG. Furthermore, regional organizations and arrangements to undertake efforts to obtain the release of children from armed forces and groups and their family reunification shall be supported.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "845dd50a-3991-4e14-b5ec-f69e31967141", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.9 Integrated Effective coordination with other related sectors (including education, health, youth, and employment) and relevant agencies/ministries is critical to the success of DDR processes for children. Systems for coordination, information-sharing and reporting shall be established and continuously implemented, so that all concerned parties can work together and support each other, particularly in the case of contingency and security planning. Coordination shall be seen as a vital element of the ongoing monitoring of children\u2019s well-being and shall be utilized to further advanced preparedness, prevent (re-)recruitment and ensure conflict sensitivity. Effective coordination between DDR practitioners working with children and adults should be promoted to support the transition from child to adult for older children (ages 15\u201318). Data on CAAFAG shall be safely secured and only made available to those who have a specific need to access it for a specific purpose that is in a child\u2019s best interests, for example, to deliver a service or make a referral. Confidentiality shall be respected at all times.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ebc715d7-63d2-41c4-82a4-3c8b82f2505a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.1 Safety and security Prevention and release require considerations related to safety of children, families, communities, DDR practitioners and other staff delivering services for children. DDR processes for children may be implemented in locations where conflict is ongoing or escalating, or in fragile environments. Such contexts present many potential risks and DDR practitioners shall therefore conduct risk assessments and put in place measures to mitigate identified risks before initiating DDR processes. Particular consideration shall be given to the needs of girls and protection of all children from sexual exploitation and abuse. All staff of UN organizations delivering child protection services and organizing DDR processes shall adhere to the requirements of the Secretary-General\u2019s Bulletin on the Special Measures for Protection from Sexual Exploitation and Sexual Abuse (for UN entities) and the Interagency Standing Committee\u2019s Six Core Principles Relating to Sexual Exploitation and Abuse. DDR processes shall establish an organizational child protection policy and/or safeguarding policy and an individual code of conduct that have clear, strong, and positive commitments to safeguard children and that outline appropriate standards of conduct, preventive measures, reporting, monitoring, investigation and corrective measures the Organization will take to protect participants and beneficiaries from sexual exploitation and abuse.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6c9fc30c-0b4b-485a-8ec7-d9e590587bea", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.2 Planning, assessment, design, monitoring and evaluation The best interests of the child shall be a primary consideration in all assumptions and decisions made during planning. Emphasis is often placed on the need to estimate the numbers of children in armed forces and groups in order to plan actions. While this is important, policymakers and planners should also recognize that it is difficult to obtain accurate figures. Uncertain estimates during planning, however, should not prevent DDR processes for children from being implemented, or from assuring that every child will have sustained reintegration support. Children shall not be included in the count of members of any armed force or group at the time of a DDR process, SSR, or power-sharing negotiations. Legitimacy shall not be given to child recruitment through the inclusion of children within DDR processes to inflate numbers, for example. However, as children will require services, for the purposes of planning the budget and the DDR process itself, children shall be included in the count of persons qualifying for demobilization and reintegration support.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e3857cfc-22f5-4ed7-b6d6-ae33e6f473e6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Many children who are formally or informally released or who have otherwise left armed forces or groups never have the opportunity to participate in child-sensitive DDR processes. This can happen when a child who flees an armed force or group is not aware of their rights or lives in an area where DDR processes are unavailable. Girls, in particular, may be at higher risk of this as they are often \u2018unseen\u2019 or viewed as dependents. DDR practitioners and child protection actors shall understand and plan for this type of \u201cself-demobilization,\u201d and the difficulties associated with accessing children who have taken this route. If levels of informal release or separation are believed to be high (through informal knowledge, data collection or situation analysis), during the planning and design phases, in collaboration with child protection actors, DDR practitioners shall establish mechanisms to inform these children of their rights and enable access to reintegration support.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "f41b4238-c11b-4f6b-a1dd-1f9412f0581e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.3 Public information and community sensitization Families and communities shall be sensitized on the experiences their children may have had during their association with an armed force or group and the changes they may see, without stigmatizing them. CAAFAG, both girls and boys, often experience high levels of abuse (sexual, physical, and emotional), neglect and distressing and events (e.g., exposure to and perpetration of violence, psychological and physical injury, etc.). They will require significant support from their families and communities to overcome these challenges, and it is therefore important that appropriate sensitization initiatives are in place to ensure that this support is understood and forthcoming. To increase children\u2019s awareness of their rights and the services available, DDR practitioners should use targeted gender- and age-sensitive public communication strategies such as public service announcement campaigns (radio, social media and print), child-friendly leaflet drops in strategic locations, peer messaging and coordination with grassroots service providers to reach children. It is critical for DDR practitioners to maintain regular communication with CAAFAG regarding release and reintegration processes and support, including services offered and eligibility criteria, any changes to the support provided (delays or alternative modes of service delivery), and the availability of other services and referrals. A lack of proper communication may lead to misunderstandings and frustration among children and community members and further conflict. Communications strategies should be highly flexible and responsive to changing situations and needs. Strategies should include providing opportunities for people to ask questions about DDR processes for children and involve credible and legitimate local actors (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). A well-designed communications strategy creates trust within the community and among the key actors involved in the response and facilitates maximum participation. In all communications, children\u2019s confidentiality shall be maintained, and their privacy protected.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "928dca6a-6984-4b4a-89d5-961f8df0a7e4", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 11, - "Paragraph": "5. Normative legal frameworks DDR practitioners shall proactively seek to build the following key normative legal frameworks into DDR, from planning, design, and implementation to monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "a7ee3edf-cb73-4419-bfe0-aeebf195686c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.1 The Convention on the Rights of the Child and its Optional Protocols The CRC and its OPAC constitute the framework for the principles, norms and standards that underpin DDR processes for children. The CRC defines a \u2018child\u2019 as any human being below the age of 18 years unless, under the law applicable to the child, majority is attained earlier. OPAC prohibits recruitment and use in hostilities of anybody under 18 years of age by armed groups. OPAC also obligates States Parties to set the minimum age of voluntary recruitment of persons into their national armed forces as 15 years of age, establishes safeguards for the voluntary recruitment of persons below the age of 18, and asserts that State Parties take all feasible measures to ensure that members of the national armed forces that are under the age of 18 do not take part in direct hostilities. The rights of the child, as espoused through the CRC and its OPAC, further support the reintegration of CAAFAG through requiring States to promote: The child's right to life, survival and development: This right is not limited to ensuring a child\u2019s physical wellbeing but includes the need to ensure full and harmonious development, including at the spiritual, moral and social levels, where education plays a key role. In respect to DDR processes for children, this shall include consideration of how a child\u2019s experience in conflict impacts upon his/her own evolving capacities, as well as recognition of the resilience displayed in surviving and overcoming difficulties. The child\u2019s right to be free from arbitrary detention - No child shall be deprived of his or her liberty unlawfully or arbitrarily. The arrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time. The child\u2019s right to\u00a0fair justice and fair treatment - \u00a0States recognize the right of every child alleged as, accused of, or recognized as having infringed the penal law to be treated in a manner consistent with the promotion of the child's sense of dignity and worth, which reinforces the child's respect for the human rights and fundamental freedoms of others and which takes into account the child's age and the desirability of promoting the child's reintegration and the child's assuming a constructive role in society. States shall seek to promote the establishment of laws, procedures, authorities and institutions specifically applicable to children alleged as, accused of, or recognized as having infringed the penal law, and, in particular The physical and psychological recovery and social reintegration of child victims: States shall take all appropriate measures to promote physical and psychological recovery and social reintegration of a child victim of: any form of neglect, exploitation, or abuse; torture or any other form of cruel, inhuman or degrading treatment or punishment; or armed conflicts. DDR practitioners shall work with States to ensure that recovery and reintegration takes place in an environment which fosters the health, self-respect and dignity of the child. Article 7 of the OPAC forms the legal basis for support to CAAFAG through the obligation of signatories to rehabilitate and socially reintegrate CAAFAG. The child\u2019s right to be free from discrimination: States shall ensure respect for the rights of all children within their jurisdiction \u2013 including non-national children \u2013 regardless of race, sex, age, religion, ethnicity, opinions, disability or any other status of the child or the child\u2019s parents or legal guardians. DDR practitioners shall pay particular attention to ensuring the full involvement and inclusion of girls and their children, as well as addressing any stigmatization of CAAFAG. The child\u2019s right to participate: Children shall be allowed to express their opinions freely and participate in making decisions concerning family reunification and career and educational opportunities, and those opinions should be given due weight in accordance with the age and maturity of the child. Children shall be consulted at all stages of the release and reintegration process, and actions that affect them shall be in their best interests, considering their needs and concerns, placement and family. The child\u2019s best interests as a primary consideration: Actions that affect the child should be based on an assessment of whether those actions are in the child\u2019s best interests. As part of DDR processes for children, this shall mean that all measures to assure release, protection, reintegration and prevention of re-recruitment shall be determined by their best interests. A child shall participate in determining what is in his/her best interests.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "abb69533-1077-4334-9c3c-0ccf8464be63", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.2 The Worst Forms of Child Labour Convention Under Article 3 of the International Labour Organization Convention No. 182, States Parties shall take immediate and effective measures to secure the prohibition and elimination of the worst forms of child labour, which include the forced or compulsory recruitment of children for use in armed conflict (a child being defined as a person under the age of 18). Under Article 7(b) the convention also requires States to prevent the engagement of children in the worst forms of child labour, and to provide the necessary and appropriate direct assistance for the removal of children from the worst forms of child labour and for their rehabilitation and reintegration.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "bf0e23b0-499c-41a2-89bb-436413912d88", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.3 African Charter on the Rights and Welfare of the Child The African Charter on the Rights and Welfare of the Child (1990) requires that States take all necessary measures to ensure that no child shall take a direct part in hostilities and refrain, in particular, from recruiting any child (Article 22). 5.2 International Humanitarian Law", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cc690b61-e1e8-4c1f-91a1-4c11bba1ef64", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.2.1 Additional Protocols I and II to the Geneva Conventions The Additional Protocols I (Article 77) and II (Article 4(3)) to the Geneva Conventions call for the special respect and protection of children in armed conflict (Rule 135), underscoring that children who have not attained the age of fifteen years, shall neither be recruited into armed forces or groups (Rule 136), nor be allowed to take part in hostilities (Rule 137). The protocols provide for additional special protection for children affected by armed conflict to include protection against all forms of sexual violence (Rule 93), separation from adults while deprived of liberty, unless they are members of the same family (Rule 120), access to education food and health care (Rules 55, 118, and 131), evacuation from areas of combat for safety reasons (Rule 129), reunification of unaccompanied children with their families (Rules 105 and 131), and application of the death penalty. 5.3 International Criminal Law", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2d260d41-1ea8-4c3a-9435-12252035c3f8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.3.1 The Rome Statute of the International Criminal Court Article 8(2)(b)(xxvi) and 8(2)(e)(vii) of the Rome Statute of the International Criminal Court makes it a war crime, leading to individual criminal prosecution, to conscript or enlist children under the age of 15 years into armed forces or groups or to use them to participate actively in hostilities, in both international and non-international armed conflicts.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fdfa9ff1-ae46-4e66-b250-2227209092c3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.4.1 Security Council Resolution 1539 Security Council resolution 1539 (2004) calls for engaging armed forces and groups in dialogue leading to time-bound action plans to prevent and end grave violations against children, including the release of children. Those engaged in securing the release of children should make contact with armed forces and groups recruiting and using children, where it is safe to do so and in accordance with UN guidelines. Engagement with armed forces and groups will often occur as part of the Monitoring and Reporting Mechanism (MRM) led by the Country Task Force on Monitoring and Reporting. Those parties to the conflict that enter into dialogue with the UN can develop time-bound action plans, following their listing in the annexes of the Secretary General\u2019s annual report for grave violations against children (including the recruitment and use of children). The unconditional release of children, prevention of grave violations and awareness-raising on the issue of child recruitment and use, as well as other activities, shall be included in such action plans. Training and capacity building for armed forces or groups on their obligations under international law relating to the recruitment and use of children should be provided, including the identification and release of children, age assessment procedures to prevent child association, gender-based violence and other child protection concerns, and respect for humanitarian norms and principles.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "30269615-2635-400d-961b-3437e912922f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 14, - "Paragraph": "5.4.2 Security Council Resolution 2427 Security Council Resolution 2427 (2018) urges \u201cconcerned Member States to mainstream child protection and ensure that the specific needs of girls and boys are fully taken into account at all stages of disarmament, demobilization, and reintegration processes (DDR), including through the development of a gender-and age-sensitive DDR process\u201d. The resolution also stresses the need to pay particular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit acts of terrorism, in particular by establishing standard operating procedures for the rapid handover of these children to relevant civilian child protection actors.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b0cf8640-80a3-4081-bf3a-8b18865f8a09", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.5.1 The Paris Principles and Paris Commitments The 2007 Paris Principles, building on the 1997 Cape Town Principles, detail eight general principles and eight operational principles to protect children. Specific consideration is given to girls and their particular needs and challenges. The Paris Principles aim to guide interventions with the following objectives: To prevent the unlawful recruitment or use of children; and To facilitate the release of CAAFAG; and To facilitate the reintegration of all CAAFAG; and To ensure the most protective environment for all children. The Paris Commitments \u2013 commitments to protect children from unlawful recruitment or use by armed forces or groups \u2013 supplement the Paris Principles and have two main priorities: (1) to put an end to the unlawful recruitment and use of children by armed forces and groups globally, and (2) to make all necessary efforts to uphold and apply the Paris Principles through political, diplomatic, humanitarian, technical assistance and funding roles, consistent with international obligations.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "eb5e3ecf-f4d8-4056-86a0-663564b1a302", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Applicable in the context of CAAFAG, the UN Standard Minimum Rules for the Administration of Juvenile Justice adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. When children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "aff39ee6-642d-4b60-9109-e551f1cf73f3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "207cd4c9-4348-42b7-996f-05c80013d949", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 15, - "Paragraph": "6. Planning DDR processes for children DDR processes for children require joint planning and coordination between DDR practitioners and child protection actors involved in providing services. Joint planning and coordination should be informed by a detailed situation analysis and by a number of Minimum Preparedness Actions.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "576c5d80-3699-4823-b227-bc914ed8d191", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A detailed situation analysis should assess broad conflict-related issues (location, political and social dynamics, causes, impacts, etc.) but also the specific impacts on children, including disaggregation by gender, age and location (urban-rural). The situation analysis is critical to identifying obstacles to, and opportunities for, reintegration support. A detailed situation analysis should examine: The objectives, tactics and command structure/management/hierarchy of the armed force or group; The circumstances, patterns, causes, conditions, means and extent of child recruitment by age and gender; The emotional and psychological consequences of children\u2019s living conditions and experiences and their gendered dimensions; Attitudes, beliefs and norms regarding gender identities in armed forces and groups and in the community; The attitudes of families and communities towards the conflict, and the extent of their resilience and capacities; The absorption capacity of and support services necessary in communities of return, in particular families, which play a critical role in successful release and reintegration efforts; The extent of children\u2019s participation in armed forces and groups, including roles played and gender, age or other differences; Children\u2019s needs, expectations, and aspirations; The evident obstacles to, and opportunities for, child and youth reintegration, with consideration of what risks and opportunities may arise in the future; and The needs of, and challenges of working with, special groups (girls, girl mothers, disabled children, foreign children, young children, adolescents, male survivors of sexual violence, severely distressed children, children displaying signs of post-traumatic stress disorder, and unaccompanied and separated children). DDR practitioners should be aware that the act of asking about children\u2019s and communities\u2019 wishes through assessments can raise expectations, which can only be managed by being honest about which services or assistance may or may not ultimately be provided. Under no circumstances should interviewers or practitioners make promises or give assurances that they are not certain they can deliver. Neither should they make promises about actions others may take. Some suggested key questions for context analysis can be found in Box 1 (see also IDDRS 3.11 on Integrated Assessments).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "83fda258-cc33-45f3-a400-09e347d0c48f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.2 Minimum Preparedness Actions In addition to the context analysis, DDR practitioners and child protection actors should take the following Minimum Preparedness Actions into consideration when planning. These actions (outlined below) are informed by the Interagency Standing Committee\u2019s Emergency Response Preparedness Guidelines (2015): Risk monitoring is an activity that should be ongoing throughout implementation, based on initial risk assessments. Plans should be developed detailing how this action will be conducted. For CAAFAG, specific risks might include (re-)recruitment; lack of access to DDR processes; unidentified psychosocial trauma; family or community abuse; stigmatization; and sexual and gender-based violence. Risk monitoring should specifically consider the needs of girls of all ages. Risk monitoring is especially critical when children self-demobilize and return to communities during ongoing conflict. Results should be disaggregated to ensure that girls and other particularly vulnerable groups are considered. Clearly defined coordination and management arrangements are critical to ensuring a child-sensitive approach for DDR processes, particularly given the complexity of the process and the need for transparency and accountability to generate community support. DDR processes for children involve a number of agencies and stakeholders (national and international) and require comprehensive planning regarding how these bodies will coordinate and report. The opportunity for children to be able to report and provide feedback on DDR processes in a safe and confidential manner shall be ensured. Moreover, an exit strategy should feature within a coordinated approach. Needs assessments, information management and response monitoring arrangements must be central to any planning process. The needs of boy and girl CAAFAG are multifaceted and may change over time. A robust needs assessment and ongoing monitoring of the reintegration process for children is essential to minimize risk, identify opportunities for extended support and ensure the effective protection of all children \u2013 especially vulnerable children \u2013 involved in DDR. Effective information management should be a priority and should include disaggregated data (by age, sex, ethnicity, location, or any other valid variable) to enable DDR practitioners and child protection actors to proactively adapt their approaches as needs emerge. It is important to note that all organizations working with children should fully respect the rights and confidentiality of data subjects, and act in accordance with the \u201cdo no harm\u201d principle and the best interests of children. Case management systems should be community-based and, ideally, fit within existing community-based structures. Case management systems should be used to tailor the types of support that each child needs and should link to sexual and/or gender-based violence case management systems that provide specialized support for children who need it. Because reintegration of children is tailored to the individual needs of a child over time, a case management system is best to both address those needs and to build up case management systems in communities for the long term. Reintegration opportunities and services, including market analysis are critical to inform an effective response that supports the sustainable economic reintegration of children. They should be used in conjunction with socioeconomic profiles to enable the development of solutions that meet market demand as well as the expectations of child participants and beneficiaries, taking into account gendered socio-cultural dynamics. See IDDRS 5.30 on Youth and DDR, sections 7 and 8, for more information. Operational capacity and arrangements to deliver reintegration outcomes and ensure protection are essential to DDR processes for children. Plans should be put in place to enhance the institutional capacity of relevant stakeholders (including UN agencies, national and local Governments, civil society and sectors/clusters) where necessary. Negotiation capacity should also be considered in situations where children continue to be retained by armed forces and groups. The capacity of local service providers, businesses and communities, all of which will be directly involved on a daily basis in the reintegration process, should also be supported. Contingency plans, linked to the risk analysis and monitoring system, should be developed to ensure that DDR processes for children retain enough flexibility to adapt to changing circumstances.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "adf512a9-1e3c-4f9a-882f-96134324169e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.3 Data Data is critical to the design and implementation of DDR processes for children. Information on a child\u2019s identity, family, the history of their recruitment and experience in their armed force or group, and their additional needs shall be collected by trained child protection personnel as early as possible and safely stored. All data shall be sex-disaggregated to ensure that DDR processes are able to effectively respond to gendered concerns.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "8d3e1b43-9a0b-4765-aa8c-69c243dc173b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.3.1 Data collection\t Information collected from CAAFAG shall be used only to deliver services to children and to design and implement child- and gender-sensitive DDR processes. Other actors often try to obtain actionable military or intelligence information on armed opposition groups from demobilized children or may interrogate children as they view them as threats. Such actions could amount to a violation of child rights, as it places children in danger and may undermine the release process. The Paris Principles (Article 7.25) expressly state that \u201cinterviews should never be conducted to collect information for military purposes.\u201d In addition, Security Council resolution 2427 (2018) states that CAAFAG are to be treated as victims of violations of international law. A commitment shall be obtained from Governments that children will be handed over to civilian child protection authorities as soon as possible and that military information will not be sought from them under any circumstances. Where interviews are necessary for legitimate purposes, as few individuals as possible should interview children to eliminate risks and harms that stem from repeated interviewing. Interviewers shall be trained child protection actors skilled in interviewing children. The Security Council has expressed \u201cgrave concern at the use of detained children for information gathering purposes.\u201d (UNSCR 2427, OP 20) Therefore, interviews with CAAFAG shall be carried out with the utmost concern for the child\u2019s privacy, dignity and confidentiality. Those providing information (children and caregivers) shall be fully informed about the purpose of the information gathering, how the information will be used and how it will be kept confidential. Voluntary and informed consent shall be required before proceeding with any interview and the child shall be informed that he or she may stop the interview at any time without any need to give a reason. Child protection agencies and/or safeguarding personnel shall provide support, guidance and direction for such interviews. If no parent or guardian is available, a trusted adult shall be provided during any interview and undertake the role of protecting the child\u2019s interests. Interviews shall be conducted in the mother tongue of the child at the pace that he or she sets. Questions shall be posed in child-friendly and age-appropriate language and be rephrased if necessary, and information received clarified. Some information can be sensitive, and the children who provide it may be subject to threats. As children are usually aware of the threats they face, they may provide misleading information to try to protect themselves. These fears shall be identified and measures to deal with them shall be developed. Security should be a key concern and informed by a security risk assessment. During interviews, staff shall pay attention to, and have plans to safeguard children from, anyone who may intimidate or threaten them. Interviews with children shall be carried out in a safe place. If the child wishes to stop the interview, or begins to display signs of distress, the interview shall be stopped immediately. To safeguard the child and the interviewer, no adult shall conduct an interview alone with the child; mixed gender teams shall be provided. No child shall be subject to pressure, coercion, manipulation, including promises, or to any other physical, emotional or psychological tactics to obtain information.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "5314d341-f68e-46ac-84f4-b2337a3ed704", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.3.2 Data management Effective and secure data management is an important aspect of DDR processes for children as, beyond ethical considerations, it helps to create trust in the DDR process. Data management shall follow a predetermined and standardized format, including information on roles and responsibilities, procedures and protocols for data collection, processing, storage, sharing, reporting and archiving. Rules on confidentiality and information security shall be established, and all relevant staff shall be trained in these rules, to protect the security of children and their families, and staff. Databases that contain sensitive information related to children shall be encrypted and access to information shall be based on principles of informed consent, \u2018need to know\u2019 basis, \u2018do no harm\u2019 and the best interests of the child so that only those who need to have access to the information shall be granted permissions and the ability to do so. 6.3.3 Gender responsive and transformative", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "1d6949f1-c02a-46eb-8adc-982f9934fa7c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The specific needs of girls and boys shall be fully considered in all stages of DDR processes. A gender-transformative approach should be pursued, aiming to shift social norms and address structural inequalities that lead girls and boys to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gender-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of girls. Relations: Interventions should equip girls with the skills to navigate the expectations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to girls and work to create space for their empowerment.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6289d86f-7a8f-4f72-a982-d6137285c7da", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The inclusion of girls in DDR processes is central to a gender-transformative approach. CAAFAG are often at great risk of gender-based violence, including sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Children, especially girls, are often not identified during DDR processes as they are not always considered to be full members of an armed force or group or may be treated as dependents or wives. Furthermore, DDR practitioners are not always properly trained to identify girls associated with or formerly associated with armed forces and groups and cater to their needs. Often, girls who informally leave armed forces or groups do so to avoid stigmatization or reprisal, or because they are unaware that they have the right to benefit from any kind of support. For these reasons, specific mechanisms should be developed to identify girls formerly associated with armed forces and groups and inform them about the benefits they may be entitled to through child-sensitive DDR processes. In order not to put girls at risk, this must be done in a sensitive manner, for example, through organizations and groups with which girls are already involved, such as health care facilities (particularly those dealing with reproductive health), religious centres and organizations that assist survivors of sexual violence (see IDDRS 5.10 on Women, Gender and DDR).", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "f7395fd8-4d01-442d-92cb-f5396513c66f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "As a key element, a gender-transformative approach should also engage boys, young men, and the wider community so that girls may be viewed and treated more equally by the whole community. It should also recognize that boys and men may also become associated with armed forces and groups due to expectations about the gender roles they should perform, including roles as protector and bread winner even at young ages, particularly where a father has died or is missing, and about social norms that promote violence and/or taking up arms as acceptable or preferred measures to resolve problems. This community-based approach is necessary to help promote the empowerment of girls by educating traditional patriarchal communities on gender equality and thus work towards countering harmful gender norms that enable violence to flourish. Other gender transformative approaches critical for boys include:", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "1cbe9398-5528-4b59-bba8-8d136fcc2a6f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Non-violent forms of masculinities: Often through socialization into violence or through witnessing the use of violence while with armed forces and groups, boys may develop an association of violence through social norms surrounding masculinity and social recognition. Such associations may in turn lead to the development of anti-social behaviour towards themselves, to girls or vulnerable groups, or to community. Supporting boys in deconstructing violent or militarized norms about masculinity is an essential part of breaking the cycle of violence and supporting successful reintegration. This may also involve supporting emotional skill development, including understanding and working with anger in a healthy way.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e4c909c6-20f6-4b3f-8b0c-4046bf7bff1c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Gender-Equitable Relations and Structures: The ideology, structure and treatment of women or girls in armed forces and groups may have led to the development of non-equitable views regarding gender norms, which may affect notions of what \u2018consent\u2019 is. Supporting equitable norms, views, and approaches to being in relationship with girls, and cultivating respect for agency and choice of girls and women, is critical to supporting boys formulate healthy norms and relationships in adulthood.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "d49e7844-aed7-4d45-8997-5aad918819b5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A gender-transformative approach should also ensure that gender is a key feature of all DDR assessments and is incorporated into all elements of release and reintegration (see IDDRS 3.10 on Integrated Assessments).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e4866f20-f3fd-4c2c-a781-e37d4ed74c4a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "7. Prevention of recruitment and re-recruitment of children The factors that lead to children associating with armed forces and groups are complex, and usually involve a number of push and pull factors specific to each child and their wider environment. Understanding the recruitment pathways of children into armed forces and groups is important for development of effective (re-)recruitment prevention strategies and can influence reintegration programming. For example, in some instances of forcible recruitment, new members are required to engage in violence against their family and community to reduce the incentive to escape. This can make their reintegration and community acceptance particularly difficult. Prevention efforts should start early and take place before and continuously throughout armed conflict. Furthermore, these efforts should recognize that children are embedded in families and communities, and programmes must target each part of their ecosystem. Prevention efforts should be based on an analysis of the dynamics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. Government ministries, child focused non\u00adgovernmental organizations, DDR practitioners and child protection actors should monitor and analyse information on the recruitment of children to understand recruitment patterns.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "1d9f098a-657c-47d9-a235-18980e42d975", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "To prevent the (re-)recruitment of children as part of DDR processes, various risk factors should be analysed at the structural, social and individual levels (see Table 1 below). Special focus shall be given to children at the most risk of recruitment. Some children are particularly vulnerable to (re-)recruitment because of inadequate protection, such as children living in conflict zones, child refugees or those who have been internally displaced, unaccompanied children, orphans or those separated from their families, children in child- or female-headed households, and children with very young parents. Girls and boys are at greater risk of being recruited in certain locations, such as zones of intense conflict; areas frequently crossed by troops; and public places with concentrations of children such as markets, schools, refugee camps or camps for internally displaced persons, and places where children go to fetch wood or water. Child recruitment is not always a sudden occurrence, but can take place gradually, progressing from initial contact to formal association. Children may start with occasional visits to the camps of armed forces or groups to look for food, polish shoes or carry out other tasks. Increasingly, they are given more responsibilities, then they may seek shelter at these camps, and eventually they start to take part fully in military life. Preventing this kind of \u2018voluntary\u2019 recruitment is a particular challenge and engagement is needed to sensitize communities on the risks of children having contact and forming associations with an armed force or group, even if it appears harmless. It is also important that the identification and documentation of (re-)recruitment risk considers aspects of child agency that may make children more vulnerable to recruitment. While forcible recruitment remains an issue, most children are recruited through the manipulation of their economic, social, political and/or psychological vulnerability.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6f14e8cc-e7e7-4e44-94ad-f3ec1d02a28e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The most effective way to prevent child (re-)recruitment is the development and ongoing strengthening of a protective environment. Building a protective environment helps all children in the community and supports not only prevention of (re-)recruitment but effective reintegration. To this end, DDR practitioners should jointly coordinate with Government, civil society, and child protection actors involved in providing services during DDR processes to strengthen the protective environment of children in affected communities through:", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5d8ee25a-5db3-451f-a5bf-1c98e63ce1fc", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Efforts should be made to strengthen family resilience, especially in assisting parents to cope with wartime stress, including through access to mental health support and parenting classes, and to minimize the risks of negative family coping behaviours (e.g., child neglect, domestic violence, child marriage and parental discord). Parents also have a role to play to build resilience in their children and educate them on the risks of recruitment. This may include informing them about recruiting efforts on the internet and social media, if they play a key role in driving the conflict. Parents should also be supported to counter gender-based societal expectations of boys as fighters and girls as \u2018bush wives\u2019.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "8cf44e02-3a22-4147-ae89-7bb5d04b7657", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Working with communities to help them better understand why children might join armed forces and groups, explain the developmental effects of child recruitment, and identify how to protect children will all help to prevent (re-)recruitment. Communities should be encouraged to establish community\u00adbased child protection networks. These networks can work on awareness-raising, good parenting skills, identifying at-risk children and mediating family disputes (where appropriate and with training). Where appropriate, these networks can be supported to establish community monitoring mechanisms, such as early warning systems. Non-individually identifiable data from these early warning systems can then be shared with national human rights commissions, national observatories and/or Government authorities.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6734cb06-f780-482a-96f5-a4d0aa2c9b00", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "In addition, where appropriate, children may be included in community violence reduction (CVR) programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for (see section 8.4 below and IDDRS 2.30 on Community Violence Reduction).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b135dc99-8e12-4c7f-b9b6-4e98e2274a60", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "An important way to prevent child recruitment into armed forces and groups can be to address the underlying socioeconomic factors that cause children to be vulnerable to (re-)recruitment. Investment in education and broader economic development and employment opportunities may help. Investment in basic service delivery, necessary community infrastructure and key markets at the local level can also support community initiatives to prevent (re-)recruitment. Socioeconomic prevention methodologies should be linked \u201ccoherently and as early as possible to national and sectoral frameworks and policies for peacebuilding, recovery and development where they exist at the country level.\u201d", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "840c3742-6fa0-439c-8e9f-f77011ef9f0e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Adult members of armed forces and groups shall be sensitized regarding child rights, including rights of girls. Taking this action contributes to a protective environment, as it removes justifications for recruitment of children.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "103a2e5d-32e6-477a-8a26-55004794f3a3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Advocacy shall also be directed towards national decision makers, as this can raise awareness of the recruitment and use of children in armed conflict and can lead to the introduction of new laws. Advocacy may include measures towards the ratification and implementation of international legal instruments on child protection, or the reinforcement of these legal instruments; the adaptation of laws related to the recruitment and use of children in armed conflict; and the end of impunity for those who recruit and/or use children in armed conflict. It should also include laws and policies that protect children against forms of child abuse, including gender-based violence, that are sometimes among the factors that prompt children to join armed forces and groups. After enactment, appropriate sanctions can be implemented and enforced against people who continue to recruit children.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "75aff96d-5b81-4a26-83f7-20b5e50593b2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A strong awareness of the existing legal framework is considered central to prevention strategies, but international norms and procedures alone do not restrain armed groups. Awareness campaigns should be followed up with accountability measures against the perpetrators. However, it should also be recognized that punitive approaches intended to strengthen prevention down the line can also have unintended consequences, including armed groups actively hiding information about children in their ranks, which may make military commanders more reluctant to enter DDR processes (see IDDRS 6.20 on DDR and Transitional Justice).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6b67d6c0-8ef6-4886-b8ad-c521e6f1515b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Monitoring and reporting on the (re-)recruitment of children is an important component of prevention and should be given adequate investment in terms of resourcing, capacity, safety and time. The UN mandated monitoring and reporting mechanism (MRM) on grave violations of child rights in situations of armed conflict, including their recruitment and use, is a comprehensive system for collecting, verifying and reporting on such violations (UNSCR 1612 (2005)). The MRM is designed \u201cto provide for the systematic gathering of accurate, timely, objective and reliable information on grave violations committed against children\u201d within the context of armed conflict that will enable responses to increase compliance with international legal obligations and to end and prevent violations. Where the MRM has been activated, engagement with parties to the conflict to develop action plans to eliminate recruitment and use of children can both lead to release of children in the ranks of armed forces or groups and provide opportunities to prevent future (re-)recruitment (see section 5.3). Where possible and safe to do so, DDR processes should support engagement with armed forces and groups and be part of verification of compliance with such action plans, including commitments to release children.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ccbb56d1-0947-4092-b156-ada111e02c6b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Any activities should adhere to mandatory reporting laws on child abuse or gender-based violence against children, regardless of whether an MRM has been activated. Practitioners should be clear about what these laws are, be sure that children understand any mandatory reporting nationally and provide informed consent if relevant. Referral pathways for necessary response services should be available before engaging with survivors so that referrals can be made in the event of a disclosure. In addition, where relevant and safe, there should be coordination, harmonization and cross checks with the Monitoring and Reporting Arrangement (MARA) of the Conflict Related Sexual Violence (CRSV). CRSV takes multiple forms such as rape, forced pregnancy, forced sterilization, forced abortion, forced prostitution, sexual exploitation, trafficking, sexual enslavement, forced circumcision, castration, forced nudity or any other form of sexual violence of comparable gravity. Depending on the circumstances, it could constitute a war crime, a crime against humanity, genocide, torture or other gross violation of human rights. See definition of CRSV: Analytical and Conceptual Framing of Conflict-related Sexual Violence, June 2011.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "984333a6-8792-44d0-84fc-d15bbad6a46e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8. Child-sensitive approaches to DDR When designing and implementing DDR processes for CAAFAG, DDR practitioners and child protection actors must tailor support to the individual child and root them in community-based approaches and structures. Individualized interventions recognize that there important differences between children based on age; from those who may appear to have voluntarily joined an armed force or group and those who have been obviously forced to do so; from those who have made decisions and been given leadership or other responsibilities when they were members of armed forces and groups and those who have been slaves; and from those who have a family waiting for them and those who cannot or wish not to return, etc. Not all children will require the same level of attention, the same approach, or the same support. Some children (e.g., girl mothers, child heads of households, etc.) may have current responsibilities that require training support for immediate employment. Workable ways of addressing each child\u2019s situation should be developed. However, it is critical that support to CAAFAG be provided through broader holistic community-based strategies and approaches, that target CAAFAG as well as other children in conflict-affected communities. Providing similar services and reintegration support that benefit children within the wider community will mitigate against the risk of resentment, while also serving as a prevention tool that can build community resilience and address some of the underlying factors that contribute to the (re)recruitment of children into armed forces and groups.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "d5c8c25f-3973-4d4c-bac1-a92635a73d1c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 26, - "Paragraph": "8.1 Disarmament Disarmament may represent the first sustained contact for CAAFAG with people outside of the armed force or group. This can be a difficult process, as it is often the first step in the transition from military to civilian life. As outlined in section 4.2.1, CAAFAG shall be eligible for DDR processes for children irrespective of whether they present themselves with a weapon or ammunition and irrespective of the role they may have played. Children with weapons and ammunition shall be disarmed, preferably by a military or government authority rather than a DDR practitioner or child protection actor. They shall not be required to demonstrate that they know how to use a weapon. CAAFAG shall be given the option of receiving a document certifying the surrender of their weapon or ammunition if there is a procedure in place and if this is in their best interests. For example, this would be a positive option if the certificate can protect the child against any doubt over his/her surrender of the weapon/ammunition, but not if it will be seen as an admission of guilt and participation in violence in an unstable or insecure environment or if it could lead to criminal prosecution (see IDDRS 4.10 on Disarmament).", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "70a67dc9-b2a5-4202-ba44-073a51b2348c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Transition from military to civilian life may be difficult for CAAFAG because, in spite of the hardships they may have experienced during their association, they may also have found a defined role, responsibility, purpose, status and power in an armed force or group. For children who have been in an armed force or group for many years, it may at first seem impossible to conceive of a new life; this is particularly true of younger children or CAAFAG who have been indoctrinated to believe that military life is best for them and who know nothing else.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "36815bbe-ef13-4228-97a6-54ace4f34116", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners must work together with child protection actors to prioritize physically removing CAAFAG from contact with adult combatants. Removing CAAFAG from armed forces and groups should be done in a responsible but efficient way. Symbolic actions \u2013 such as replacing military clothing with civilian clothing \u2013 can aid this adjustment; however, such actions must be clearly explained, and the child\u2019s welfare must be paramount. Providing civilian documentation such as identity papers may be symbolic but also practical as it may allow the child to access certain services and therefore ease the child\u2019s reintegration. Children need immediate reassurance that there are fair and realistic alternatives to military life and should receive information that they can understand about the benefits of participating in DDR processes as well as the different steps of the process. However, under no circumstances should interviewers or practitioners make promises or give assurances that they are not absolutely certain they can deliver.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "1b89966c-6814-4db1-96f2-60192c6c319c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Official documentation marking demobilization may help to protect children from abuse by authorities or armed forces and groups that are still active. However, staff should establish that such documents cannot be seen and will not be used as an admission of guilt or wrongdoing. Official identification documents certifying that a child has demobilized can be provided when this protects children from re-recruitment and assures their access to reintegration support. Civilian documents proving the identity of the child with no mention of his/her participation in an armed force or group should be made available as soon as possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "51907ca2-35db-4684-8ea8-a5017c76b12f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Depending on the specific DDR process in place, demobilization may occur at semi-permanent military-controlled sites (such as cantonment sites), reception centres or mobile demobilization sites (see IDDRS 4.20 on Demobilization). When reporting to such sites, the time CAAFAG spend at the site shall be as short as possible, and every effort shall be made to rapidly identify them, register them and supply them with their immediate needs. Where possible, children should be identified before arrival at the demobilization site so that the documentation process (identification, verification, registration, medical needs) and other applicable procedures last no longer than 48 hours, after which they shall be transferred to an interim care centre (ICC) for children or to another location under civilian control. If CAAFAG report or are brought to mobile demobilization sites or reception centres, standard operating procedures shall be in place outlining when and how the handover to civilian authorities will take place.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f33459b1-e35c-4e16-bb06-3fe64d157065", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "At all demobilization sites, semi-permanent or otherwise, particular attention shall be given to the safety and protection of children during their stay, through measures such as proper lighting, regular surveillance and security patrols. Children shall be physically separated from adult combatants, and a security system shall be established to prevent adult access to them. Girl mothers, however, shall not be separated from their children. Separate accommodation must be provided for boys and girls, including separate washing and toilet facilities, with specific health services provided when necessary (e.g., reproductive health services and hygiene kits adapted to specific needs). Female staff shall be provided for locations where girls are staying.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "23130a8b-934f-4ef7-b216-2c4be8bf0b24", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Since a number of girls are likely to be mothers, demobilization sites shall also be designed to provide proper food and health care for infants and young children, with childcare assistance provided for mothers unable to care for their children. Demobilization sites must, without exception, provide medical health screening, including sexual health screening to all children, and provide necessary treatment. Efforts shall be made to improve the overall health of CAAFAG through early detection, immunization, treatment of severe conditions (such as malaria and acute respiratory infections), treatment for wounds and injuries, triage and referral of serious cases to secondary/tertiary facilities (see IDDRS 5.70 on Health and DDR).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "0ed01057-6305-4432-abdb-4a11f60b2127", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children shall be informed that they have the right not to be abused or exploited including the right to protection from sexual exploitation and abuse, and child labour, and that they have the right and ability, through adapted and efficient reporting and complaints mechanisms, to report abuse. When children do report abuse or exploitation by adult former combatants, staff or adult caregivers, they shall not be stigmatized or made to feel disloyal in any way. Their complaints must also be acted upon immediately through child-friendly mechanisms designed and put in place to protect them from such exploitation and to punish the offenders to the fullest extent possible. If children reporting abuse request such a service, they shall be given space and time to share their emotions and reflect on their experiences with health workers trained in psychotherapeutic assistance. Mechanisms shall be established to prevent offending staff from working with children in similar situations in the future (see also section 4.10.1).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "a18a3246-3091-40a1-8db8-7b7257dee0f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children are particularly vulnerable when their physical protection is no longer secure, including during troop movements between camps and demobilization sites. Sufficient, appropriate and secured means of transportation shall be planned in order to transport children in the shortest time possible, and they should be accompanied by civilian child protection staff. Children shall be informed, clearly and in advance, of all movements arranged for them. Family accompaniment during transport should be encouraged where possible, as this will promote community acceptance.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "30e53223-7e0a-45b4-822b-d3aed5a01fc6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "8.3. 1 Interim care centres Interim care centres are not necessary in all DDR processes for children, especially when the placement of a child in an ICC delays family and community reunification. However, ICCs can be used as a last resort, as they provide a secure space that may help children sever their links with armed forces and groups; allow time for family tracing, verification and, if necessary, gradual reunification (see section 7.4); enable medical support to be provided, including mental health and psychosocial support; and provide an opportunity for pre-discharge awareness-raising/ sensitization. ICCs are not the same as cantonment sites. ICCs shall be child-friendly and their management and services consistent with the Alliance for Child Protection in Humanitarian Action\u2019s Minimum Standards and the Guiding Principles in Interim Care Planning and Provision for community-based interim care. The best interests of the child shall be a primary consideration. Factors of necessity and appropriateness shall also be considered with the aim that a child will be placed into an ICC only if there is no other family- or community-based interim care available, and any placement will be for the shortest period necessary. Staffing levels for ICCs shall depend on the number, ages and needs of children in the facility. Their care and protection should be paramount, with an emphasis on reuniting children with their families or providing alternative community-based care solutions as swiftly as possible (see Annex C for more details). While security of the facility is a key concern, ICCs shall remain child-friendly and not inadvertently transform into detention facilities. Adults shall not be accommodated at ICCs, and children accommodated at these centres should be grouped according to age (unless they are girl mothers). Tracing, verification, reunification, case management and monitoring should be carried out at ICCs to facilitate the return of children to their communities (including community outreach). Health check-ups and specialized health services should be provided \u2013 for example, reproductive health and antenatal services, diagnosis of sexually transmitted infections, and voluntary and confidential HIV testing and counselling \u2013 while nutritional deficiencies and war-related injuries should receive treatment. Children should receive counselling, including help to overcome distress or trauma, develop self-esteem and learn life skills; learn about reintegration and livelihood opportunities, as well as information about child labour; and receive peace education and training in non-violent conflict resolution to help them regain a sense of the social norms and routines of civilian life. Sports, cultural and recreational activities should be provided to keep children occupied and help them build trust, but there should be no formal education or training activities within the ICC apart from assessments of literacy and numeracy. Formal education and training should be provided within the community. Children should be transferred as quickly as possible to their communities, consistent with their best interests, for reintegration into communities, education, and social cohesion activities with all children as well as any community-based case management support needed. Where return is not possible, family and community-based solutions should be sought.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6d32dd8d-b5fd-4a70-949e-f49e2b04f618", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 29, - "Paragraph": "8.3.2 Interim care placements Interim care placements should be used in cases where ICCs are not available or appropriate (for example, when a child is already in the community) and when family unification is not possible or in the best interests of the child. These types of placements can include community-based care, fostering or guardianship. The Inter-Agency Guiding Principles on Unaccompanied and Separated Children (2004) provide clear guidelines on how interim care placements should be conducted. Furthermore, community-based temporary alternative care must be consistent with the United Nations Guidelines for Alternative Care (General Assembly resolution 64/142).", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "50b28ae3-04a9-421f-9333-db39a8ccd93f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 29, - "Paragraph": "8.4 Community violence reduction DDR processes increasingly include CVR programmes in an effort to reduce armed violence and sustain peace (see IDDRS 2.30 on Community Violence Reduction). Specific provisions shall be developed to ensure the protection, care and support of young people (aged 15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activities, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "913de38a-dccf-4abb-8ac4-0ea5e4708285", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.5 Reintegration The purpose of reintegration support is to provide children with assistance that has been tailored to their needs and that provides them with a viable, long-term alternative to military life. Reintegration support provided to children shall take into account differences in age, sex, individual resilience, the capacity of the child to make informed decisions, the length of stay and individual experience with an armed force or group, culture, the reintegration opportunities in an environment that will have changed in the child\u2019s absence and other relevant factors. Reintegration support should be individualized, targeting CAAFAG as well as other at-risk, vulnerable or conflict-affected children, as well as community-based, utilizing strategies and approaches that empower communities to accept and receive CAAFAG and support their reintegration. Because reintegration of adult ex-combatants and persons formerly associated with armed forces and groups should be considered even in the absence of a DDR programme, reintegration programmes of adults and children can mutually reinforce each other and where relevant and safe to do so should be coordinated as much as possible. (see IDDRS 2.40 Reintegration as Part of Sustaining Peace, and IDDRS 4.30 on Reintegration).", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2f1d5315-2845-4bca-a1b2-d11e38708d40", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 30, - "Paragraph": "8.5.1 Health CAAFAG face a range of health issues that may impact their reintegration. The identification of health needs shall begin when the child first comes into contact with a DDR process, for example, at a reception centre or cantonment site or an interim care centre. However, ongoing health needs shall also be addressed during the reintegration process. This may be via referral to relevant local or national health facilities, medical fee coverage or the direct provision of support. All service and referral provision shall be private and confidential. Reproductive health As soon as possible after their release from an armed force or group, and for as long as necessary, girls and boys who have survived sexual violence, abuse and exploitation shall receive medical care in addition to mental health and psychosocial care (see section 7.9.1). Consideration shall also be given to boys who may have been forced to perpetrate sexual violence. All children who have experienced sexual violence shall receive access to the Minimum Initial Service Package (MISP) for sexual and reproductive health. Girl mothers shall be referred to community health services and psychosocial support as a priority. To prevent cycles of violence, girl mothers shall be enabled to learn positive parenting skills so that their children develop in a nurturing household. DDR practitioners should invest in reproductive health awareness-raising initiatives for boys and girls (especially adolescents) covering issues such as safe motherhood, sexual violence, sexually transmitted infections, family planning and the reproductive health of young people. Increasing the awareness of boys will help to reduce the reproductive health burden on girls and enable a gender-transformative approach (see section 4.3). Consideration shall be given to any sensitivities that may arise through the inclusion of boys in these awareness-raising initiatives, and necessary preparations shall be made with families and community leaders to gain their support. HIV/AIDS Children who test positive for HIV/AIDS may experience additional community stigmatization that negatively impacts upon their reintegration. Initial screening and testing for HIV/AIDS shall be provided to CAAFAG during demobilization in a manner that voluntary and confidential. During reintegration, support for children living with HIV/AIDS should include specialist counselling by personnel with experience of working with children, support to families, targeted referrals to existing medical facilities and linkages to local, national and/or international health programmes. To ease reintegration, community-based HIV/AIDS awareness training and education can be considered (see IDDRS 5.60 on HIV/AIDS and DDR). Children may also prefer to receive treatment in locations that are discreet (i.e., not in public spaces or through discreet entrances at clinics). Drug and alcohol addiction Drugs and alcohol are often used by commanders to establish dependence, manipulate and coerce children into committing violence. Children\u2019s substance use can create obstacles to reintegration such as behavioural issues in the home and community, risk-taking behaviour, poor nutrition and general health, and increased vulnerability to re-recruitment. DDR practitioners should coordinate with child-focused local, national and/or international health organizations to develop or identify for referral drug and alcohol rehabilitation programmes adapted to the needs of CAAFAG. Treatment shall follow the International Standards for the Treatment of Drug Use Disorders.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "634a4b9e-2ec9-4c79-82fb-392d43d4da4e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 31, - "Paragraph": "8.5.2 Mental health and psychosocial support and special care Mental and psychosocial health is critical to effective reintegration for all age groups; however, children face specific challenges that can seriously undermine their return to civilian life. Some children may have mental health or psychosocial needs when they re-enter their communities due to their experiences during conflict, the tremendous effort required to adapt to being back in civilian life, anxiety and uncertainty, stigmatization, fear of being rejected, poverty and a lack of livelihood. Mental health and psychosocial support should be offered (dependent on individual need and resources) to help children develop new patterns of behaviour, improve their self-esteem, develop their capacity to make decisions about the future and enable them to express emotions should they want to do so. Children and communities, with support, do have the capacity to cope with the distress caused by war. Mental health and psychosocial support activities should build on children\u2019s natural resilience and family and community support mechanisms and encourage coping and positive development. A community-based case management system should be active for children who require individualized mental health support. This system should be available for all children in the community who may be in need. Some children may need specific mental health or psychosocial assistance to overcome particularly negative or harmful experiences during their stay with an armed force or group. Boys and girls who have experienced sexual violence, including when of a prolonged nature, may face significant psychosocial issues affecting their reintegration \u2013 for example, an inability to trust adults, aggression and social withdrawal. Those living with injury and disability and the terminally ill, in particular, require care that is adapted to their needs and environment. Mental health and psychosocial support interventions for children in DDR processes shall abide by the following core principles: Human rights and equality: Focus on the protection of children most at risk of human rights violations and the promotion of equity and non-discrimination, maximizing fairness across all sub-groups of children. Equality in provision of support includes taking into consideration and tailoring support to the specific, and different needs, of boys and girls. Participation: Ensure the participation of children in decisions affecting them to support their resilience and promote the participation of families and communities, as they are the most important support structures for children\u2019s psychosocial health. Do no harm: Minimize the risk of harm to children through psychosocial support by employing good coordination (with families, communities and other actors), appropriate needs assessments, cultural sensitivity, and ongoing monitoring and reflection on approach. Build on available resources and capacities: Engage with existing structures and self-help mechanisms to root the intervention in local solutions. Integrated support systems: Integrate into wider systems (e.g., existing community support mechanisms, formal/non-formal school systems, general health services, general mental health services, social services) to reach more people (community-based approaches) and limit stigma. Multilayered supports: A layered system of complementary supports is most effective in meeting different needs: Basic services and security: Securing basic needs (food, shelter, water, basic health care) and ensuring a minimum level of security represent the first steps in mental and psychosocial well-being. Community and family supports: Most children will require some level of family/community support to address psychosocial disruption. This may include communal healing ceremonies, supportive parenting programmes, formal and non-formal educational activities, livelihood activities and the activation of social networks. Focused, non-specialized supports: More-affected children will require interventions by trained and supervised personnel in areas such as psychological first aid and basic mental health care by primary health-care workers. Specialized services: Targeting the most affected children who exhibit serious mental health and psychosocial symptoms and require either (a) referral to specialized services, if they exist, or (b) initiation of longer-term training and supervision of primary/general health-care providers. Each context requires a specific approach to mental health and psychosocial support. However, Annex D provides some generalized do\u2019s and don\u2019ts for planning mental health and psychosocial support interventions. The guidelines for psychosocial support set out in IDDRS 5.30 on Youth and DDR are also applicable to children, although specific considerations for age should be made.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "be442db0-f056-418e-a4c5-b6467e256090", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 32, - "Paragraph": "8.5.3 Family tracing and reunification Following the release of children from armed forces and groups, efforts should be made to reunify children with their families, whenever possible and in their best interests. Family tracing and reunification shall be based on the Inter-Agency Guiding Principles on Unaccompanied and Separated Children. Family reunification is not simply a matter of returning a child to his or her family, but requires preparation, mediation, and follow-up, possibly including ceremonies of return, to help the family recognize and address problems of alienation, addiction, aggression and resistance to civil forms of authority. Reunification also involves the family in decisions regarding the child\u2019s re-adaptation, education, learning and training. Children need to be reassured that their families want them back and accept them as they now are. Assistance should not only consist of material aid, but also include social support and follow-up. Family tracing should be started at the earliest possible stage and can be carried out at the same time as other activities. Family reunification will follow after mediation and an assessment of the situation that is quick, but thorough enough to be sure that there is no threat or discomfort to the child. Children can feel worried about returning to their family or community because of acts they may have committed when with armed forces or groups, or for any number of other reasons (e.g., girls may have been victims of sexual violence, abuse or exploitation, and may feel especially trepidatious if they have children born from those experiences). Phased approaches to reunification may be considered if reunification is determined to be in the best interests of the child but certain challenges exist. For example, there may be family trauma as a result of conflict, or economic conditions may make immediate reunification difficult. These issues may also necessitate ongoing mediation, as well as psychosocial support to the child and family focused initially on the immediate challenge of reunification, but with a longer-term strategy to address more systemic issues. Family-based reintegration and services are crucial to the long-term success of reintegration. Case management may need to include components on support to families such as parenting support or economic support to the adults in the family. In some cases, family reunification may not be in the best interests of the child, because of difficult security or family conditions that do not provide the child with required levels of protection. It must also be recognized that poor family conditions or family connections to armed forces and groups may have been the reason the child was recruited in the first place. If these conditions remain unchanged, children are at risk of being re-recruited. When family reunification is not in the best interests of the child, for whatever reason, the aforementioned Guidelines for Alternative Care shall be followed.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "06ac9516-5618-4ae4-9fc1-3ea207350592", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 33, - "Paragraph": "8.5.4 Supporting families and communities Families and communities have a critical role to play in the successful reintegration of CAAFAG. After their release, many CAAFAG return to some form of family relationship \u2013 be it with parents or extended family. Others, however, do not return to their family due to fear or rejection, or because their families may have been killed or cannot be traced. Family rejection often disproportionately affects girls, as they are presumed to have engaged in sexual relations with men or to have performed roles not regarded as suitable for girls according to traditional norms. With family acceptance and support, reintegration is more likely to be successful. The process of family reintegration, however, is not always simple. Residual conflict may remain, or new conflicts may emerge due to various stressors. Intergenerational conflict, often a feature of societies in conflict, may be an issue and, as returning children push for voice and recognition, can intensify. Assisting families in the creation of a supportive environment for returning CAAFAG can be achieved through a variety of means and should be considered in all DDR processes for children. This support may take a number of different forms: Psychosocial support to the extended family can help to address broader psychosocial well-being concerns, overcome initial tensions and strengthen the resilience of the family as a whole. Positive parenting programmes can increase awareness of the rights (and needs) of the child and help to develop parenting skills to better support returning CAAFAG (e.g., recognizing symptoms of trauma, parent-child communication, productively addressing negative behaviours in the child). Promotion of parent-teacher associations (development or membership of) can provide ways for parents to support their children in school and highlight parents\u2019 needs (e.g., help with fees, uniforms, food). Income-generating activities that involve or support the whole family rather than only the child can alleviate financial concerns and promote working together. Establishment of community-based child protection networks involving parents can assist in the delivery of early warnings related to recruitment risk, children\u2019s engagement in risk-taking behaviours (e.g., drug or alcohol abuse, unsafe sex) or conflicts among children and youth in the community. Support to associations of families of conflict-affected children beyond CAAFAG can help build awareness in the community of their specific needs, address stigma and provide support in a range of areas including health, income generation, community voice and participation. When supporting families to take a stronger role in the reintegration of their children, it is important that the wider community does not feel that children are rewarded for their involvement with armed forces or groups, or that broader community needs are being neglected. Community acceptance is essential for a child\u2019s reintegration, but preconceived ideas about children coming out of armed forces and groups, or the scars of violence committed against families and/or communities, can severely limit community support. To prevent reprisals, stigmatization and community rejection, communities shall be prepared for returning CAAFAG through sensitization. This sensitization process shall begin as early as possible. Additional activities to help prepare the community include the strengthening of local child protection networks, peace and reconciliation education, and events aimed at encouraging the lasting reintegration of children. Cultural, religious and traditional rituals can play an important role in the protection and reintegration of girls and boys into their communities. These may include traditional healing, cleansing and forgiveness rituals, where they are considered not to be harmful; the development of solidarity mechanisms based on tradition; and the use of proverbs and sayings in sensitization and mediation activities. Care should be taken to ensure that religious beliefs serve the best interests of the child, especially in areas where religion or cultural values may have played a role in recruitment. Reconciliation ceremonies can offer forgiveness for acts committed, allow children to be \u2018cleansed\u2019 of the violence they have suffered or contributed to, restore cultural links and demonstrate children\u2019s involvement in civilian life. Such ceremonies can increase the commitment of communities to a child\u2019s reintegration process. Children should contribute to the creation of appropriate reintegration mechanisms to improve their sense of belonging and capacity. However, it is also essential to understand and neutralize community traditions that are physically or mentally harmful to a child. In addition, such rituals may not be suitable in all contexts. Particular attention should be paid to the information that circulates among communities about returning boys and girls, so that harmful rumours (e.g., about real or presumed rates of HIV/AIDS among them and the alleged sexual behaviour of girls) can be effectively countered. Girls are at highest risk of rejection by their communities, and it is important for programme staff to engage on a continual basis with the community to educate them about the experience girls have had and the challenges they face without fostering pity or stigma. Programme staff should consult with affected girls and include them in the planning and implementation of initiatives, including how their experiences are portrayed, where possible. Specific focus should be given to addressing issues of gender-based violence, including sexual violence. Girls who experience gender-based violence during their time associated with an armed force or group will often face stigmatization on their return, while boys will often never discuss it due to societal taboos. Specific engagement with communities to aid the reintegration of CAAFAG may include: Community sensitization and awareness-raising to educate communities on the rights of the child, the challenges CAAFAG face in their reintegration and the role that the community plays in this process; Community-based psychosocial support addressing the needs of conflict-affected community members as well as CAAFAG and their families; Community-wide parenting programmes that include the parents of CAAFAG and non-CAAFAG and help improve awareness and foster social inclusion and cohesion; Support to community-based child protection structures that benefits the whole community, including those that reduce the risk of recruitment; Investment in child-focused infrastructure rehabilitation (e.g., schools, health centres, child/youth centres) that provide benefit to all children in the community; Community-wide income-generation and employment programmes that bring older children as well as the parents of CAAFAG and non-CAAFAG together and provide much-needed livelihood opportunities; Creation of community child committees that bring together community leaders, parents and child representatives (selected from children in the community, including CAAFAG and non-CAAFAG) to provide children with a platform to ensure their voice and participation, especially in the reconstruction process, is guaranteed; and Advocacy support (including training, resources and/or linkages) to increase the role and voice of communities and children/youth in the development/revision of national child and youth policies, as well as interventions.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0503502e-4041-44e0-902a-f81bf5d7fc31", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 35, - "Paragraph": "8.5.5 Access to Education Education is a critical component of enabling returning CAAFAG to successfully transition into normal civilian routines and helps to prepare them for future opportunities. The higher a child\u2019s level of education, the more likely his/her reintegration is to succeed. DDR processes for children shall therefore support children to try to reach (or recover) as high a level of education as possible, often starting with basic literacy. After a relatively long stay within armed forces or groups, or because of the difficulties they previously experienced in school, children may not be able to adapt to traditional teaching methods. For these situations, schooling programmes should be developed in consultation with the ministry of education that are specifically designed for such children, and that achieve the same results as other formal educational programmes. To better support children who are struggling, teachers should receive specific training. This may include training in recognizing signs of emotional stress, managing problematic behaviour and developing effective pupil-parent relations. Accelerated Education Programmes (AEPs) and other remedial schooling programmes for children who have been out of school for long periods can provide vital catch\u00adup education. An AEP is \u201ca flexible, age-appropriate programme, run in an accelerated timeframe, which aims to provide access to education for disadvantaged, over-age, out-of-school children and youth. This may include those who missed out on or had their education disrupted due to poverty, marginalization, conflict and crisis. The goal of AEPs is to provide learners with equivalent, certified competencies for basic education using effective teaching and learning approaches that match their level of cognitive maturity.\u201d The AEP Working Group details 10 principles for the delivery of accelerated education, as well as key action points, key definitions, essential information, examples and case studies, and indications of challenges and other points to consider. These principles shall be followed by any programme engaging in AEPs. DDR processes for children can further support the education of demobilized CAAFAG through various other means including AEP teacher training; capacity-building of a country training team; provision of teaching and learning materials; provision of school furniture; payment of incentives to AEP teachers; payment of registration and examination fees; and the renovation and rehabilitation of schools, including sanitation facilities. Moreover, modalities should be developed that enable part-time study if this is desirable, and other assistance should be provided to boost attendance (e.g., food, childcare facilities for girl mothers). The aim, wherever possible, should be to integrate returning children into existing education systems. Supporting these systems provides a benefit for the entire community and can help to ease reintegration of CAAFAG. However, even with the assistance of such programmes, some children may not be able to return to the regular school system. In such cases, programmes should be designed to include vocational training activities (skills training and apprenticeships) that are suited to local conditions and markets, and in line with national legislation on minimum working age and working conditions, (see section 7.9.5).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f3e0fdd7-3d05-4bc1-b252-4cf9651a834b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 36, - "Paragraph": "8.5.6 Life skills Life skills are those abilities that help to promote psychological well-being and competence in children as they face the realities of life. These are the ten core life skill strategies and techniques: problem-solving; critical thinking; effective communication skills; agency and decision-making; creative thinking; interpersonal relationship skills; self-awareness building skills; empathy; coping with stress; and emotions. Programmes aimed at developing life skills can, among other effects, lessen violent behaviour and increase prosocial behaviour. They can also increase children\u2019s ability to plan ahead and choose effective solutions to problems. CAAFAG often lose the opportunity to develop life skills during armed conflict, and this can adversely affect their reintegration. For this reason, DDR processes for children should explicitly focus on the development of such skills. Life skills training can be integrated into other parts of the reintegration process, such as education or health initiatives, or can be developed as a stand-alone initiative if the need is identified during demobilization. The inclusion of all conflict-affected children within a community in such initiatives will have greater impact than focusing solely on CAAFAG.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d67dd99e-dbcf-4c8f-b4d2-222513744460", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 37, - "Paragraph": "8.5.7 Vocational training and livelihood development Vocational training opportunities for children shall be realistic in terms of what the local economy can support and shall also reflect the wishes of the child. There should be made available as wide a range of training options as possible, consistent with local market conditions, to help children adapt successfully to civilian life and to what the market demands. This training may build on skills and competencies learned when the child was associated with an armed force or group. A choice of training options beyond traditional areas should be promoted, as should the provision of support to girls (including financial and childcare support, where appropriate). More specifically, vocational and skills training may include: Analysis of livelihood systems, agriculture, market opportunities, and household economies to develop economically relevant training, alternative forms of education and opportunities for economic reintegration. Coordination between stakeholders to improve lessons learned, development of joint programmes, appropriate referrals and measures to avoid inconsistencies in the benefits provided. Community consultation to develop collective initiatives benefiting the community. Business skills training to prepare children to keep accounts and handle money. Apprenticeships and on-the-job training for those with no previous work experience. Life skills training, including basic social norms and civic education, parenting skills, rights at work and home, prevention of HIV/AIDS, and education to counter interpersonal violence. Incorporation of gender-transformative approaches to ensure sensitivity to the particular challenges faced by girls, increase awareness in both girls and boys of the challenges faced by the other gender, and foster positive gender relationships. Development of skills in non-violent conflict resolution and anger management to help CAAFAG in their everyday lives. Provision of childcare and, if necessary, flexible training schedules for girl mothers. Some children need to start earning a living immediately after they return to their family and community and should be helped to earn an income or receive benefits while they obtain training and/or an education. For example, the sale of things they have made, or animals reared during their training may facilitate the purchase of tools or other equipment that are needed for future work. Boys and girls, particularly those of legal working age, should benefit from an adapted version of socioeconomic support programmes designed for demobilized adults (see IDDRS 4.30 on Reintegration). However, income-generating activities for children should be in line with national and international laws on child labour, including ILO convention 138 on minimum age of work. Livelihood options for girls should not be based on traditionally assigned gender roles. Instead, the focus should be on what girls want to do. Linkages to the local business, trades and agricultural communities should be sought and can aid in employment, small business mentoring and ongoing analysis of market needs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "288c8143-5ba7-47cf-bc2b-090644775cac", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 38, - "Paragraph": "8.5.8 Social protection assistance As part of planning and implementing a child-sensitive approach to DDR-related interventions, CAAFAG can be provided with social protection assistance to reduce vulnerability to poverty and deprivation, promote social inclusion and child protection, and strengthen family and community resilience. This may include: Multipurpose cash grants. Commodity (e.g., food or rent) or value vouchers. Family and child allowances. Disability social pensions and benefits. Transfers in exchange for a parent working (cash for work). Transfers in exchange for attending health check-ups (for all family members). Business recovery or start-up grants (for older children or parents of CAAFAG) subject to conditions (e.g., business management training, business plan development, etc.); and Scholarship benefits restricted to certain areas (e.g., school fees, school supplies, etc.). To ensure that assistance is child-sensitive, it must be governed by a number of guiding principles: Assistance must be designed with the child\u2019s best interests in mind and necessary safeguards in place, so that cash or other material assistance does not create incentives or push/pull factors to recruitment of children in the community or re-recruitment of the child and does not draw attention to the child. Assistance must be based on findings from the situation analysis and risk assessments (see sections 6.1 and 6.2). Assistance shall be targeted towards the most vulnerable CAAFAG (for example, girl mothers, persons with disabilities, and separated or unaccompanied minors) and their families. Assistance shall be predictable, allowing households to plan, manage risk and invest in diverse activities. Mixed delivery approaches (individual and community) should be considered, where appropriate, to strengthen conflict sensitivity. Community-based approaches should be promoted when they are likely to reduce resentment, increase community acceptance of returning CAAFAG, result in local economic benefits and strengthen social reintegration outcomes. Focus should be given to assistance that is multisectoral (e.g., health, education, water, sanitation and protection) and that has multiplier impacts. Conditions should be placed on community grants (e.g., training, awareness-raising activities, investment in community-level income-generating activities and benefits for the children of the households engaged). Investment in community structures should be promoted when these structures foster a protective environment for children (e.g., community-based child protection committees and community early warning prevention systems). Risk mitigation strategies shall be developed and implemented to reduce the risk of abuse. For example, it should be ensured that distributors of assistance work in pairs, that post-distribution monitoring is carried out and that children are empowered to speak out about their rights.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "2abb4623-6abf-4023-af02-96cf74e1ba3b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 39, - "Paragraph": "8.5.9 Voice, participation and representation Being recognized, accepted, respected, and heard in the community is an important part of the reintegration process. However, this is a complex issue for children, as they are generally excluded from community decision-making processes. Children may also lack the self-esteem and skills necessary to engage in community affairs usually reserved for adults. Reintegration support should strive to generate capacities for such participation in civilian life. Although political reintegration is generally a feature of adult DDR processes (see IDDRS 4.30 on Reintegration), children also have political rights and should be heard in decisions that shape their future. Efforts should be made to ensure that children\u2019s voices are heard in local-level decision-making processes that affect them. Not only is this a rights-based issue, but it is also an important way to address some of the grievances that may have led to their recruitment (and potential re-recruitment). For children nearing the age of majority, having a voice in decision-making can be a key factor in reducing intergenerational conflict. CAAFAG may face particular difficulties attaining a role in their community due to their past associations or because they belong to communities that were excluded prior to the conflict. Girls, persons with disabilities, or people living with HIV/AIDS may also be denied full participation in community life. The creation of inclusive societies is an issue bigger than DDR. However, the reintegration process provides an opportunity to make an initial investment in this endeavour through potential interventions in several areas. Civic education To make the transition from military to civilian life, children need to be aware of their political rights and, eventually, responsibilities. They need to understand good citizenship, communication and teamwork, and non\u00adviolent conflict resolution methods. Ultimately, it is the child\u2019s behaviour that will facilitate successful reintegration, and preparing a child to engage socially and politically, in a productive manner, will be central to this process. Such activities can prepare them to play a socially useful role that is acknowledged by the community. Special efforts should be made to include girls in civic education training to ensure they are aware of their rights. However, children should not be forced to participate in any activities, nor used by armed or political groups to achieve specific political objectives, and their rights to free speech, opinion and privacy should be prioritized. Ensure child participants in DDR processes have a voice in local and national recovery DDR processes should be aligned with national plans and strategies for recovery, the design of which should be informed by inputs from their participants. The inclusion of conflict-affected children and CAAFAG in these processes enables children to identify and advocate for specific measures of importance with regard to youth and recovery policies. Specific attention should be given to particularly vulnerable groups who may ordinarily be marginalized. Promote the gender transformation agenda Efforts to strengthen the agency of girls will only go so far in addressing gender inequality. It is also important to work with the relationships and structures present that contribute to their (dis)empowerment. It is critical to support the voice and representation of girls within their communities to enable their full reintegration and to contribute to eradication of the structural inequalities that influenced their recruitment. Working with men and boys to address male gender roles and masculine norms that promote violence is required. Build a collective voice An inclusive programme sees community children, particularly those affected by conflict in other ways, participating in programming alongside CAAFAG. This provides an opportunity for children and youth to coordinate and advocate for greater inclusion in decision-making processes. Create children\u2019s committees across the various areas of reintegration programming Children should have the opportunity to put forward their views individually and collectively. Doing so will provide a mechanism to substantively improve programme outcomes and thus ensure the best interests of the child. It also gives greater voice to other vulnerable and marginalized children in the community. Steps should be taken to ensure that girls, and especially girl mothers, are included in these committees. Encourage the participation and visibility of programme beneficiaries in public events Greater participation and visibility of CAAFAG as well as non-CAAFAG will increase the opportunities for children to be involved in community processes. As community members, and community decision makers in particular, have more positive interactions with CAAFAG, they are more likely to open up space for their involvement in community affairs. However, all participation shall be voluntary, and CAAFAG should not be pushed into visible roles unless they feel comfortable occupying them.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "3f4d7d5e-789d-4486-a323-e51e3ccd6552", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8.5.10 Monitoring and follow-up After CAAFAG have returned to their families and communities, monitoring and follow-up is essential. It requires careful planning, adequate funding and the collaboration of key governmental bodies, UN agencies and non-governmental organizations. Monitoring activities should occur through regular visits to children\u2019s homes, schools, and communities, including meetings with families, peers, teachers, and community leaders, without creating stigma or risk to the individuals and families involved. The living conditions of the child, the quality of his/her relationship with family members and caregivers, and the level of reintegration in the community should be regularly assessed. Confidential, accessible, and safe feedback mechanisms that allow children to report any concerns should be in place. Challenges should be identified to facilitate problem-solving, referral or programme adaptation where required. Success stories are also important for the generation of positive lessons learned and to present opportunities for replication in other areas or programmes. Monitoring should be conducted by a dedicated monitoring, evaluation and learning team. More staff are likely to be needed when large numbers of children are reunited with their families, because monitoring visits and other support activities become more labour-intensive and time-consuming as children are dispersed from a few central locations to scattered communities. Community\u00adbased child protection networks and community leaders, especially women, should be actively involved in monitoring the safety and well\u00adbeing of reunited children, and should assume increasing responsibility for ongoing monitoring and follow-up to ensure a smooth takeover of this work by the community. Monitoring systems should be developed to use programme-related data gathered during demobilization including verification exercises for children. Effective programme monitoring improves accountability by recording information on programme progress, suitability of selected approaches, and impact of support on children\u2019s well-being. Monitoring should be conducted throughout programming to inform programme adjustments, including how to better reach particularly vulnerable groups of children, such as girls or disabled children. Close, continuous monitoring at the situational level is also essential, as the context will certainly change over time as issues relating to child recruitment and use, verification and release are complex and often unpredictable. Follow-up systems should be established to ensure post-programme support for reintegrating children. The reintegration process takes time and will usually not be completed within the period of the programme. Returning CAAFAG remain vulnerable to re-recruitment, social exclusion and poverty and will require ongoing support for several years. Regular follow-up should be seen as an important element of the continuum of care for children. Therefore, follow-up support is critical to an effective exit strategy, ensuring that programme gains in reintegration are safeguarded. Follow-up systems should be developed in close consultation with children and the community. They should focus on especially vulnerable children (e.g., girl mothers, those not reunited with their family, those with severe psychosocial issues and disabled children). Support measures should be informed by disaggregated monitoring to ensure accurate targeting. Follow-up systems should also be community-based but linked to national systems. This can be achieved, for example, by supporting child well-being assessments.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "66eb81d5-3afe-4326-a9b3-b1b6dc47a23b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "When DDR programmes are linked to security sector reform (SSR), the composition of the new national army may be tied to the number of members of each armed force and group (see IDDRS 6.10 on DDR and SSR). Children are often included in these figures. Negotiations on SSR and force reduction must include the release of all children. CAAFAG shall not be included in troop numbers because the presence of children is illegal and including them may encourage more recruitment of children in the period before negotiations.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "8d26babf-06f0-4d37-a309-f45b8b5e12a9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 42, - "Paragraph": "9. Criminal responsibility and accountability Governments are bound by the CRC and guided by international standards and norms when dealing with children who are alleged to have, accused of having, or recognized as having infringed the penal law during the course of their association with an armed force or group. This is independent of the type of crime that is alleged to have been committed. In all cases, children shall be treated primarily as victims of human rights violations. Prosecution and judicial proceedings should only be used as a last resort, with emphasis instead on recovery and reintegration. 9.1 Children as victims Children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Principles. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, any expressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes such as incitement to discrimination, hostility, or violence, or to committing terrorist acts, should not constitute criminal offenses. Under the convention on the rights of the child (Article 2) States Parties shall take all appropriate measures to protect children against discrimination or punishment on the basis of the status, activities, expressed opinions, or beliefs of their parents, legal guardians, or family members. Thus, children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. As part of the investigation of cases involving a child victim or witness, child victims or witnesses, their parents or guardians, legal representatives or a designated support person, should be promptly and adequately informed of their rights, availability of services and protection measures, and procedures in relation to any adult and/or juvenile justice processes, from their first contact with the justice process and throughout, to the extent feasible and consistent with the child\u2019s best interests. Any investigative action, including interviews with or examinations of the child, shall be conducted by professionals specially trained in dealing with children using a child-sensitive approach. All investigative actions shall be conducted in a suitable environment, in a language that the child uses and understands, and in the presence of the child\u2019s parent, legal guardian, legal representative, or designated support person. To the extent possible, the repetition of interviews of child victims or witnesses should be minimized to prevent secondary victimization. The child\u2019s best interest and right to privacy must be considered in all actions (see also Section 6.3.1 Data Collection, and Section 9.5 Collecting testimonies from children). 9.2 Minimum age of criminal responsibility Under the CRC, States are required to establish a minimum age of criminal responsibility (MACR). The Committee on the Rights of the Child encouraged States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. This is because children\u2019s brain development is still evolving during these years. Children under the MACR shall never be processed through the criminal justice system. Criminal accountability measures imposed on a child above the MACR shall consider the child\u2019s best interests, the child\u2019s age at the time of the commission of any alleged crime, the coercive environment under which the child may have been living, and any other mitigating circumstances, while simultaneously supporting the child\u2019s protection and reintegration. For all children, reintegration processes should be focused on addressing the root causes of their association and recovery, rather than punishment for any actions. 9.3 Juvenile justice and child-specific due process and minimum standards Children over the MACR can be held accountable for criminal acts they may have committed, including terrorist offences, but only while respecting their rights, employing child-specific juvenile justice processes, and with their best interests as a primary consideration. Due consideration shall be given to their right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, and protections against self-incrimination. Justice systems handling cases of children over the MACR should always also prioritize the child\u2019s best interests and recognize the long-term process for children to sustainably reintegrate. Any judicial proceedings for children shall respect internationally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recovery. Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. The UN Standard Minimum Rules for the Administration of Juvenile Justice (\u2018The Beijing Rules\u2019) adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The Beijing Rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. This requirement is further supported through the CRC which provides an obligation under international law for States to ensure that \u201cno child shall be deprived of his or her liberty unlawfully or arbitrarily\u201d and that the \u201carrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time\u201d. As such when children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place. 9.3.1 Girl mothers and their children Girl mothers in contact with the law should receive special consideration \u2013 such as consideration of mitigating circumstances in sentencing \u2013 and the rights of her child(ren) should be factored into judicial decisions. This may include allowing mothers to serve sentences at home, in order to respect the best interests of their children and maintain family unity. Specific interventions shall be developed to address the various challenges that girl mothers and their children may face. Any such interventions shall be based on the best interests of each child, in recognition of the detrimental impacts that family separation and deprivation of liberty have on children. Family unity should be maintained save in exceptional circumstances where the parent poses an immediate and actual harm to the child. Practitioners shall advocate with Governments for mothers under 18 years of age to have the right to confer their nationality onto their children, a right that protects their children from becoming stateless.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "6bd87938-8761-4cb0-ab62-127f0dbde289", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 44, - "Paragraph": "9.4 Children associated with armed groups designated by the UN as terrorist organizations DDR practitioners shall encourage the release and reintegration of CAAFAG at all times and without precondition. There is no exception to this rule for children associated with armed groups that have been designated as terrorist by the Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities established pursuant to resolution 1267 (1999), 1989 (2011) and 2253 (2015) or by any other state or regional body. No matter the armed group involved and no matter the age, status or conduct of the child, all relevant provisions of international law, including human rights, humanitarian, and refugee law. This includes all provisions and standards previously discussed, including the Convention on the Rights of the Child and its Optional Protocols, all standards for justice for children, the Paris Principles and Guidelines, where applicable, and the Geneva Conventions. As with all CAAFAG, children associated with designated terrorist groups shall be treated primarily as victims and be afforded their right to be released and provide them with the reintegration and other support described in this module without discrimination (Optional Protocol to the Convention on the Rights of the Child, Articles 6(3) and 7(1) and the Paris Principles and Guidelines on Children Associated with Armed Forces and Armed Groups (Articles 3.11-3.13). Security Council resolution 2427 (2018) \u201c[s]trongly condemns all violations of applicable international law involving the recruitment and use of children by parties to armed conflict as well as their re-recruitment\u2026\u201d and \u201c\u2026all other violations of international law, including international humanitarian law, human rights law and refugee law, committed against children in situations of armed conflict and demands that all relevant parties immediately put an end to such practices and take special measures to protect children.\u201d (OP1) The Security Council also emphasizes the responsibility of states to end impunity \u201cfor genocide, crimes against humanity, war crimes and other egregious crimes perpetrated against children\u201d including their recruitment and use. Children who have been recruited and used by terrorist groups are victims of violations of international law and have the same rights and protections as all children. Some children may also have committed crimes during their period of association. While children above the minimum age of criminal responsibility may be held accountable consistent with international law (see section 9.3), as victims of crime, these children should not face criminal charges for the mere fact of their association with a designated terrorist group or for activities that would not otherwise be criminal such as cooking, cleaning, or driving. Children whose parents, caregivers or family members are alleged to be associated with a designated terrorist group, also shall not be held accountable for the actions of their relatives nor shall they be excluded from measures or services that promote their physical and psychosocial recovery or reintegration. Security Council resolution 2427 (2018) stresses the need for States \u201cto pay particular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit actors of terrorism, in particular by establishing standard operating procedures for the rapid handover of children to relevant civilian child protection actors\u201d (OP 19). It also urges Member States to mainstream child protection in all stages of DDR (OP24) and in security sector reforms (OP25), including through gender- and age-sensitive DDR processes, the establishment of child protection units in national security forces, and the strengthening of effective age assessment mechanisms to prevent underage recruitment. It stresses the importance of long-term sustainable reintegration for all boys and girls affected by armed conflict and working with communities to avoid stigmatization of children while facilitating their return in a way that enhances their wellbeing (OP 26). Children formerly under the control of UN designated terrorist groups, may be able to access refugee and asylum procedures depending on their individual situation and status (e.g., if they were forcibly recruited and trafficked across borders). All children and asylum seekers have a right to individual determinations to assess any claims they may have. For any child who asks for refugee or asylum status, the practitioner shall refer the child to the relevant UN entity or to a legal services provider. DDR practitioners shall not determine eligibility for asylum or refugee status.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7a788a38-0b2f-4166-84c4-2ea68b44ec71", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "9.4.1 Justice for children suspected, accused, or convicted of committing terrorism-related offences Consistent with Article 40 of the CRC, any child suspected, accused, or convicted of having committed a terrorism-related offence or an offence against national security has the right to be treated in a manner consistent with international law and standards, including juvenile justice standards: \u201cProcedures employed should promote the child\u2019s dignity and worth and reinforce the child\u2019s respect for the human rights and fundamental freedoms of others. It should take into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in society.\u201d In addition, if a state seeks to hold a child accountable for criminal acts alleged to have been committed while under the control of an armed group, courts and service providers should account for the child\u2019s experience and the coercive environment under which the child was living or forced to act when determining both criminal responsibility and the services or support that a child may need. In all decisions, the child\u2019s best interests shall be a primary consideration, \u201ceven when the child\u2019s interests may conflict with the State\u2019s perceived security interests.\u201d Any child allegedly associated with an armed group should be treated primarily as a victim. In this regard, irrespective of considerations of their legal responsibility with regard to any alleged offence defined as terrorist and/or a threat to national security under national legislation, children shall be afforded the rights set forth by the international legal framework related to child victims. Any child associated with an armed group and who is or has been suspected, charged or convicted of a terrorism related offence or is deprived of his or her liberty as a result, shall be treated in accordance with international law and internationally recognized juvenile justice standards, including the right to legal representation and the right to appeal. In case such a child is released from detention, the child shall be provided with required reintegration assistance and be part of the overall reintegration programme.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e3b5a6af-b137-46ab-9727-94315e68aab8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "9.5 Collecting testimonies from children As with all decisions involving children, the best interests of the child shall be a primary consideration when determining if a child should give information or testimony; however, under no circumstances shall a child be compelled to give testimony or a statement against himself or herself. Protective rules shall be established when collecting testimonies from children through justice mechanisms, a truth and reconciliation commission or the International Criminal Court. It is essential to protect the identity of child witnesses, to not require children to relive traumatic experiences as they testify, and to make it clear in criminal cases that their testimony may or may not succeed in convicting the accused, so that they do not have unrealistic expectations. Social support, such as psychological support, to facilitate this engagement should be provided at all times according to specific needs. Testimonies shall only be gathered once the child has given informed consent. The process should be explained in child-friendly language (in the language of the child), and, where possible, and if not contrary to the child\u2019s best interest, a parent or guardian should support the child in giving informed consent.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "4bb88b88-185f-46d9-9c69-424690cf25f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "Annex A: Abbreviations AEP\tAccelerated Education Programme CAAFAG\tchildren associated with armed forces and armed groups CRC\tConvention on the Rights of the Child CRSV\tConflict Related Sexual Violence ICC\tinterim care centre MACR\tMinimum Age of Criminal Responsibility MARA\tMonitoring and Reporting Arrangement MISP\tMinimum Initial Services Package MRM\tMonitoring and Reporting Mechanism OPAC\tOptional Protocol on the Involvement of Children in Armed Conflict SSR\tsecurity sector reform", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "1f209ff6-b4d0-425b-885c-7c6831c25e1f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "Annex B. Determining a child\u2019s age Often children do not have civil registration documents showing their birth or age. However, because it is a breach of international humanitarian law, human rights law and international criminal law to recruit children under 15 years old anywhere, and to allow any child to take part in hostilities, and because children are entitled to special protections and support, it may be important to determine whether an individual is below age 18. Reintegration and child DDR generally are designed to ensure appropriate support to children under age 18, with no difference in definition, and regardless of the legal age of recruitment or other definitions or age of a child locally. It is important to manage the identification and separation of children from adults in a coordinated way during demobilization, and throughout DDR. Failure to do so may lead to serious unintended consequences, such as the re-recruitment of children, children claiming to be adults, and adults claiming to be children. To determine a child\u2019s age, the following are general principles: If in doubt, assume the person is below 18. Identification should take place as early as possible to allow them to access age-appropriate services. Identification must occur before disarmament. A child protection actor should be given access to disarmament sites to identify children. Children should be immediately informed that they are entitled to support so that they are less likely to try to identify as adults. Considerations: Interviews should be confidential. Identification of children should take place before any other identification processes. Children should not be required to show that they can use a weapon (this is because they may have been used in a non-combat role). During negotiations, children should not be counted in the number of armed forces or group (this is to avoid incentivizing child recruitment to inflate numbers). The role that a person plays in the armed group should have no effect of the determination of whether the person is a child. For practitioners who are handling demobilization, Age Assessment: A Technical Note (2013) gives more detailed information on age determinations and includes the following core standards: An age assessment should only be requested when it is in the best interests of the child. Children should be given relevant information about the age assessment procedure Informed consent must be sought from the person whose age is being assessed before the assessment begins. Age assessments should only be a measure of last resort and be initiated only if a serious doubt about the person\u2019s age exists. Age assessments should be applied without discrimination. An unaccompanied or separated child should have a guardian appointed to support them through the age assessment procedure. Assessments must follow the least intrusive method, which upholds the dignity and physical integrity of the child at all times, and be gender and culturally appropriate Where there is a margin of error, this margin should be applied in favour of the child. Age assessments should take an holistic approach. A means of challenging the age determination should exist if the child wishes to contest the outcome of the assessment. Age assessments should only be undertaken by independent and appropriately skilled practitioners. The checklist to determine the age includes: Pre-procedure: Undertake an age assessment only when relevant actors have serious doubts about the stated age of the child; ensure that the assessment is not being initiated as a routine or standard procedure. Is the procedure really necessary? Plan any physical examination only as a measure of last resort to take place only when all other attempts e.g., the gathering of documentary evidence, interviewing the child, etc., have failed to establish age. Is a physical examination the only method of assessing age? Secure informed consent to conduct the age assessment from the child or the guardian. It is extremely unlikely that genuine informed consent can be forthcoming at a time of \u2018crisis\u2019 and consent should only be sought when a child has had time to recover from traumatic or unsettling episodes \u2013 this may take considerable time in some instances. In circumstances where there is no consent, it cannot be used against the person and the person should be considered a child. Has the child given informed consent to a physical examination? During the Procedure Conduct any age assessment procedure using a multi-disciplinary approach that draws on a range of appropriately skilled professionals and not solely on a physical examination. Is a range of approaches being used in the age assessment? When selecting professionals to conduct an age assessment, select only those without a vested interest in the outcome, and who are independent from any agencies and actors that would provide services or support to the child or who would become responsible for the child if they are assessed as being a child. Are the professionals engaged in the assessment independent? Subject to the wishes of the child, support him or her throughout the process of assessment, including by informing the child in a language he or she understands, and providing a guardian, legal or other representative to accompany them during the entire process. Is the child supported throughout the process? Develop and conduct the age assessment process in a culturally and gender sensitive way using practitioners who are fully familiar with the child\u2019s cultural and ethnic background. Is the assessment sensitive to cultural and gender needs? Protect the child\u2019s bodily integrity and dignity at every stage of the process. Is the process free from humiliation, discrimination, or other affront? Conduct the age assessment in an environment that is safe for children, which supports their needs and is child appropriate. Is the process consistent with child safeguarding principles and child-friendly? Post procedure Provide any services and support relevant to the outcome of the assessment without delay. What services and support are required to address the person\u2019s identified needs? If any doubt remains about the age of the child, ensure that this is applied to the advantage of the child. Has any doubt about the child\u2019s age been resolved in favor of the child? As promptly as is reasonably practical, explain the outcome and the consequences of the outcome to the child. Have the outcome and its consequences been explained? Inform the child of the ways that he or she can challenge a decision which they disagree with. Has the child been informed of his or her rights to challenge the decision?", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b6539c1f-07cd-46d1-b48b-c28862c15808", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 49, - "Paragraph": "Annex C: Management guidelines for interim care centres Interim care centres (ICCs), sometimes referred to as transit centres, are not a necessary step in all DDR situations. Indeed, in the view of many protection agencies, an ICC may delay the reunification of children with their families and communities, which should happen as soon as possible. Nevertheless, while in some circumstances immediate reunification and support can occur, in others a centre can provide a protected temporary environment before family reunification. Other advantages to ICCs include that they provide the necessary space and time to carry out family tracing and verification; they provide a secure space in an otherwise insecure context before reunification, and gradual reunification when necessary; they allow medical support, including psychosocial support, to be provided; they provide additional time to children to cut their links with the military; and they provide an opportunity for pre-discharge awareness-raising/sensitization. Guiding principles and implementation strategies The decision to open a centre should be based on the following conditions: The level of insecurity in community of origin; The level of success in tracing the child\u2019s family or primary caregiver; The level of medical assistance and follow\u00adup required before integration; and The level of immediate psychosocial support required before reintegration. Management guidelines for Interim Care Centres The following management guidelines apply: Child protection specialists, not military or other actors should manage the centres. Children should only stay a limited amount of time in ICCs, and documentation and monitoring systems should be established to ensure that the length of stay is brief (weeks not months). At the end of their stay, if family reunification is not feasible, provision should be made for children to be cared for in other ways (in foster families, extended family networks, etc.). Systems should be established to protect children from abuse, and a code of conduct should be drawn up and applied. An adequate number of male and female staff should be available to deal with the differing needs of boys and girls. Staff should be trained in prevention of and response to gender\u00adbased violence and exploitation involving children, norms of confidentiality, child psychosocial development, tracing and reunification. ICCs should only accommodate children under 18. Some flexibility can be considered, based on the best interests of the child, e.g., in relation to girl mothers with infants and children or on medical grounds, on a case\u00adby\u00adcase basis. In addition, young children (under 14) should be separated from adolescents in order to avoid any risk of older children abusing younger ones. Sanitation and accommodation facilities should separate girls from boys and be sensitive to the needs of infants and girl mothers. ICCs should be located at a safe distance from conflict and recruitment areas; external access to the centre should be controlled. (For example, entry of adult combatants and fighters and the media can be disruptive, and can expose children to additional risks.) Security should be provided by peacekeepers or neutral forces. Activity guidelines Tracing, verification, reunification and monitoring should be carried out. Temporary care should take place within a community\u00adbased tracing and reintegration programme to assist the return of children to their communities (including community outreach), and to encourage the protection and development of war\u00adaffected children in general. Experience has showed that when only care is offered, centres present a risk of children becoming \u2018institutionalized\u2019 and dependent. Health check\u00adups and specialized health services should be provided when necessary (e.g., reproductive health and antenatal services, diagnosis of sexually transmitted infections, voluntary and confidential HIV testing with appropriate psychosocial support, and health care for nutritional deficiencies and war\u00adrelated injuries). Basic psychosocial counselling should be provided, including help to overcome trauma and develop self\u00adesteem and life skills. Information and guidance should be provided on the reintegration opportunities available. Activities should focus on restoring the social norms and routines of civilian life; age\u00ad and gender\u00adappropriate sports, cultural and recreational activities should be provided. Community sensitization should be carried out before the child\u2019s arrival. Formal education or training activities should not be provided at the ICC; however, literacy testing can be conducted. Communities near the ICC should be sensitized about the ICC\u2019s role. Children in the centres should be encouraged to participate in community activities to encourage trust. During temporary care, peace education should be part of everyday life as well as the formal programmes, and cover key principles, objectives, and values related to the non\u00adviolent resolution of conflict. Additional Resources: United Nations Guidelines for Alternative Care, A/Res/64/142 (24 Feb 2010) Alternative Care in Emergencies Toolkit, Interagency Working Group on Unaccompanied and Separated Children (2013). Field Handbook on Unaccompanied and Separated Children, Alliance for Child Protection in Humanitarian Action (2016) Toolkit on Unaccompanied and Separated Children, Alliance for Child Protection in Humanitarian Action (2017) Child Safeguarding Standards and How to Implement Them, Keeping Children Safe (2014) Protection from Sexual Exploitation and Abuse Task Force online resources Guidelines for Justice in Matters involving Child Victims and Witnesses of Crime (2009).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "96deb9b0-12a1-4202-996f-ef948cfd5286", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Annex D: Do\u2019s and don\u2019ts for mental health and psychosocial support in emergency settings The following table gives simple information on setting up Mental Health and Psychosocial Support services in emergency situations.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ac487c3d-1d7e-4459-a7a0-ea7843928dec", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "Summary This module offers advice to policymakers and practitioners responding to cross-border movements and the presence of foreign combatants and those associated with armed groups and forces in non-combat roles in the context of armed conflict. In some armed conflicts, combatants and civilians move across international borders. The increase in non-international armed conflicts, the proliferation and diversity of armed groups, and widespread violations of international humanitarian law are all factors that affect the operational environment on the ground. The presence of foreign fighters in certain conflicts further contributes to the intensity, duration and complexity of these conflicts, and may therefore create risks to their States of origin, transit or destination, as well as zones of armed conflict in neighbouring states. Concerns have emerged about the threats that the presence of foreign combatants might pose to efforts to establish and maintain the civilian and humanitarian nature of asylum. Lack of a regional dimension to planning that takes these operational realities into account may contribute to the \u201crecycling\u201d of combatants from one conflict to another, within a region and beyond. This module therefore advocates for close collaboration between States, as well as all relevant agencies and other stakeholders, with the view of establishing regional strategies and coherence between DDR processes across a region. When working with cross-border movements, it should be kept in mind that most people moving across borders during an armed conflict are in fact civilians, many of whom are seeking asylum from persecution, conflict and violence, and have the right to international protection. As such, this module also sets out the basic principles relating to international refugee law and international human rights law, where relevant. Closely related to this, the module emphasizes the responsibility of host States, with the support of the international community, to preserve the peaceful, civilian and humanitarian character of asylum. To do so, combatants must be identified and separated from civilians at the earliest possible time, and armed individuals must be disarmed. This is essential to ensure the protection and safety of displaced civilians and survivors of rights violations (including children who may have been associated with armed forces and groups); enable humanitarian assistance; safeguard humanitarian staff; and maintain States\u2019 internal and external security. Children associated with armed forces and groups shall be identified and referred to civilian child protection actors immediately and without precondition, even during armed conflict. The presence of foreign combatants on a State\u2019s territory may contribute to deteriorating security for host communities, jeopardize inter-State relations, and even threaten regional or international stability, peace and security. States must therefore find appropriate solutions, in accordance with international law and applicable standards.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "f7ea88fc-9533-4897-bff1-1be52de339bb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module seeks to provide guidance around the following questions: What population groups are moving across international borders during conflict? What legal frameworks and standards govern the treatment of each of these groups, including on issues related to their eligibility for support and rights in relation to DDR programmes? What are the recommendations for action, on both sides of the border? What are the roles and responsibilities of international and national agencies? The following groups (categories of persons) will be covered: Adult foreign combatants, not including foreign terrorist fighters; Adult foreign persons associated with armed forces and groups who do not have roles as combatants, but who are group members with other supporting roles (see IDDRS 2.10 on The UN Approach to DDR); Foreign children associated with armed forces or groups, as defined by the Paris Principles and Commitments; Civilian family members and other dependants of foreign combatants or associated persons; Abductees or victims; and Community members. The module considers various phases of cross-border movements in the context of armed conflict: (i) upon crossing an international border, (ii) during the planning and implementation of DDR, (iii) during repatriation, and (iv) during return and reintegration to the country of origin or a third country. It also discusses possible solutions for those who cannot be repatriated (e.g., because they would face persecution, torture or other serious harm upon return) and briefly explores issues related to the prevention of recruitment. In addition to the specific groups highlighted above, in these situations there is often a complex migratory population that may need to be considered, including those practicing transhumance and nomadic pastoralism, as well as cross-border traders, refugees, smuggled migrants and trafficked populations. Foreign combatants and associated persons may return to different countries and be handled under different frameworks. This module focuses on contexts where return is to countries where a DDR programme will be in place, but it also discusses situations where elements of DDR (for example, disarmament and demobilization) may be carried out in the host country prior to reintegration in the return country or other locations. Additional references are provided in IDDRS 2.11 on The Legal Framework for UN DDR. Guidance on children associated with armed forces or groups is included where specific issues related to children having crossed an international border need to be highlighted or raised. This should be read in conjunction with the guidance provided in IDDRS 5.20 on Children and DDR. Issues related to cross-border illicit arms flows are briefly described, and references to sources of guidance on arms control are provided. The principles and standards set out in this module are focused on DDR programmes. However, the principles also apply in situations where DDR-related tools and reintegration support are implemented in the absence of a DDR programme (see IDDRS 2.10 on The UN Approach to DDR). In these instances, it will be important to consider the cross-border cooperation and agreements that may be needed.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9e850ba5-1b8b-4541-b2a0-7693b585a2bd", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; (b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; (c) \u2018may\u2019 is used to indicate a possible method or course of action; (d) \u2018can\u2019 is used to indicate a possibility and capability; and (e) \u2018must\u2019 is used to indicate an external constraint or obligation. Asylum: The grant, by a State, of protection on its territory to persons from another State who are fleeing persecution or serious danger. A person who is granted asylum is a refugee. Asylum encompasses a variety of elements, including non\u00adrefoulement, permission to remain in the territory of the asylum country and humane standards of treatment. Asylum seeker: A person whose request for international protection has not yet been finally decided on by the country to which the claim is submitted. Children associated with armed forces or armed groups (CAAFAG): The definition commonly applied in prevention, demobilization and reintegration programmes derives from the Cape Town Principles and Best Practices (1997), in which the term \u201cchild soldier\u201d refers to \u201cany person under 18 years of age who is part of any kind of regular or irregular armed force or armed group in any capacity, including, but not limited to: cooks, porters, messengers and anyone accompanying such groups, other than family members. The definition includes girls recruited for sexual purposes and for forced marriage. It does not, therefore, only refer to a child who is carrying or has carried arms.\u201d In his February 2000 report to the UN Security Council, the Secretary-General defined a child soldier as \u201cany person under 18 years of age who forms part of an armed force in any capacity and those accompanying such groups, other than purely as family members, as well as girls recruited for sexual purposes and forced marriage\u201d (S/2000/101). The Convention on the Rights of the Child( CRC) specifies that a child is every human below the age of 18. The term \u201cchildren associated with armed forces or armed groups\u201d, although more cumbersome, is now used to avoid the perception that the only children of concern are combatant boys. It highlights that children eligible for release and reintegration programmes are both those associated with armed forces and groups and those who fled armed forces and groups (often regarded as deserters and therefore requiring support and protection), children who were abducted, those forcibly married and those in detention. Access to demobilization does not depend on a child\u2019s level of involvement in armed forces and groups. No distinction is made between combatants and non-combatants so as to avoid unfair treatment, oversight or exclusion (mainly of girls). Nevertheless, the child\u2019s personal history and activities in the armed conflict can help determine the kind of support he/she needs in the reintegration phase. Combatant: Based on an analogy with the definition set out in the Third Geneva Convention of 1949 relative to the Treatment of Prisoners of War in relation to persons engaged in international armed conflicts, a combatant is a person who is a member of a national army or an irregular military organization, is actively participating in military activities and hostilities, is involved in recruiting or training military personnel, holds a command or decision-making position within a national army or an armed organization, arrived in a host country carrying arms or in military uniform or as part of a military structure, or, having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Dependant: A civilian who depends upon a combatant for his/her livelihood. This can include friends and relatives of the combatant, such as aged men and women, non-mobilized children, and women and girls. Some dependants may also be active members of a fighting force. For the purposes of DDR programming, such persons shall be considered combatants, not dependants. Foreign combatant: A person who meets all the definitions of a combatant (above) but is not a national of the country where he or she is located. This may include someone who arrives in a host country carrying arms or in military uniform or as part of a military structure, or who, having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Foreign terrorist fighter: An individual who travels to a State other than his/her State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in terrorist acts or the providing or receiving of terrorist training. Gender: The characteristics of women, men, girls and boys that are socially constructed. This includes norms, behaviours and roles associated with being a woman, man, girl or boy, as well as relationships with each other. As a social construct, gender varies from society to society and can change over time. Host state or host country: The country in which a non-national stays or resides, whether legally or irregularly. Internally displaced persons: Persons or groups of persons who have been forced or obliged to flee or leave their homes or places of habitual residence, in particular as a result of or in order to avoid the effects of armed conflict, situations of generalized violence, violations of human rights or natural or human-made disasters, and who have not crossed an internationally recognized state border. Mercenary: Any person who (a) is specially recruited locally or abroad in order to fight in an armed conflict; (b) is motivated to take part in the hostilities essentially by the desire for private gain and, in fact, is promised, by or on behalf of a party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar rank and functions in the armed forces of that party; (c) is neither a national of a party to the conflict nor a resident of territory controlled by a party to the conflict; (d) is not a member of the armed forces of a party to the conflict; and (e) has not been sent by a State that is not a party to the conflict on official duty as a member of its armed forces. Non-refoulement: A core principle of international\u00a0human rights\u00a0and refugee law that prohibits States from returning individuals in any manner whatsoever (whether directly or indirectly) to territories where they may be at risk of\u00a0persecution, torture or other forms of serious or irreparable harm. The most prominent expression of the principle of non-refoulement in international\u00a0refugee law\u00a0is article 33(1) of the\u00a01951 Refugee Convention. The principle also is part of\u00a0customary international law\u00a0and is therefore binding on all States, whether or not they are parties to the 1951 Refugee Convention. Under international human rights law, the principle of non-refoulement prohibits States from returning any person, irrespective of their status, to a country where they would be at risk of torture; cruel, inhuman or degrading treatment or punishment; or other irreparable harm. Refugee: A person who meets the eligibility criteria set out in article 1A(2) of the 1951 Refugee Convention and does not fall within the scope of an exclusion clause. This definition has been extended through regional instruments, such as the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa, the 1984 Cartagena Declaration on Refugees, and the Common European Asylum System\u2019s Qualification Directive. Screening: Screening in relation to DDR is typically undertaken to ascertain if an individual is eligible to participate in a DDR programme (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 4.20 on Demobilization). Age assessment will help identify any children and should take place at the earliest possible moment. However, in situations where the presence of foreign combatants is known or suspected, screening also refers to the processes whereby they are identified and separated from civilians. Smuggling of migrants: The facilitation, for financial or other material gain, of irregular entry into a country where a migrant is not a national or resident. The criminals behind this highly profitable business seize the opportunity created by the need or desire of people to escape not just poverty and lack of employment opportunities but also natural hazards, conflict or persecution. Trafficking in persons: The recruitment, transportation, transfer, harboring or receipt of persons, by means of the threat or use of force or other forms of coercion, abduction, fraud, deception, abuse of power or of a position of vulnerability, or of the giving or receiving of payments or benefits to achieve the consent of a person having control over another person, for the purpose of exploitation. Exploitation shall include, at a minimum, the prostitution of others or other forms of sexual exploitation, forced labour or services, slavery or practices similar to slavery, servitude, or the removal of organs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "3e8c92eb-595f-4074-a566-cdee065f037c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 7, - "Paragraph": "3. Introduction Significant numbers of conflicts have regional and cross-border dimensions. The reasons are multifaceted and often complex, and may include historical ties between groups on either side of a border, the presence of large and porous borders with limited controls and infrastructure, and contestation over natural or other resources. A variety of non-state armed groups may use border areas as a location for their activities due to a limited state presence and the ability to pass quickly between jurisdictions, and this may cause or exacerbate tensions and conflict between groups on either side of a border. Armed conflicts in border areas may lead to significant cross-border population movements of both civilians fleeing violence and combatants. Foreign combatants may come from the same community as the general population or may be effectively hiding among them or using them as shields. The identification and separation of foreign combatants from refugee populations or those seeking asylum has presented serious challenges in a number of settings in recent years. Moreover, the presence of foreign combatants in and around refugee camps has been widely recognized as exacerbating the existing vulnerabilities of refugee populations and exposing them, particularly women and children, to increased levels of violence and insecurity. In some instances, the presence of foreign combatants can pose a threat to wider national, regional and international security and can seriously jeopardize the peaceful, civilian and humanitarian character of asylum. While States may have their own reasons for sheltering foreign combatants/fighters, there may also be a lack of capacity to prevent foreign combatants/fighters from entering a neighbouring country. Combatants who cross international borders may have a range of reasons for doing so, including to flee attack, regroup, launch cross-border attacks, bring family members and other dependants to safety or visit them, find food and supplies, leave an armed force or armed group permanently, lay down arms and seek asylum, or join armed groups in the country they have crossed into. In some contexts, combatants have even sought to join DDR programmes in neighbouring countries if there were perceived benefits to doing so. The relationship between civilians and foreign combatants is quite often complex and ambiguous. In some instances, they may enjoy close kinship or other ties with communities and be provided with support. In others, the relationship may be based more on fear and intimidation, with forced or coerced recruitment and communities preyed upon for food and other supplies. It is not uncommon for relationships to change over time. Particular complexities are involved in situations where foreign combatants cross the border alongside civilians and their status may not be obvious, as many arrive without weapons and in civilian clothes. At the same time, especially in societies where there are high numbers of small arms and light weapons in circulation, not everyone who arrives with a weapon is necessarily a combatant or can be presumed to be. The sheer size of population movements can be overwhelming for a State, sometimes making it impossible to disarm those carrying weapons and conduct screening aimed at identifying combatants/fighters at the point of arrival. Competition over natural resources is a driver of violence and conflict in many settings, a dynamic that is being exacerbated by climate change in several regions, negatively impacting livelihoods and local economies. In some areas, communities and individuals are increasingly turning to armed groups to sustain their livelihoods and to protect them from others. The consequences of climate change therefore do not only include economic hardship but may also cause or exacerbate communal conflicts and tension over natural resources. Armed groups, including those operating across borders, may capitalize on these tensions to entice individuals to join their efforts. Youth and children, in particular, are at increased risk of recruitment in these settings. Recruitment can involve families or communities handing over community members, including children, out of a sense of obligation or due to pressure from armed groups. Children and adults may also join armed groups due to a lack of other options or coercion. Once associated, they may be prevented from leaving through the use of violence, threats, sanctions and even narcotics. Children also can be recruited or used by an armed force or group in any capacity, including, but not limited to, fighters, cooks, porters, messengers, spies or for sexual purposes. Women and girls are often forcibly recruited by armed groups for labour, to be used as smuggling agents for weapons and ammunition, as a sexual reward for men who join the fight, or for the purpose of forced marriage or forced pregnancy (see IDDRS 6.40 on DDR and Organized Crime). All of this typically amounts to human trafficking, as women and girls are recruited by force, fraud, coercion, abduction or abuse of power for an exploitative purpose. Women and girls may also voluntarily join armed forces and groups for a number of reasons, including to escape narrow gender roles and physical and economic insecurity, to gain respect or leadership opportunities, and to seek personal or family security. Armed groups may additionally engage in human trafficking in order to obtain financing for their organization or for personal use. They can profit directly through receiving payment for a person or by reaping the benefits of forcing victims into exploitative labour or services. Groups that have control over a territory that coincides with smuggling routes can also open new markets in the illicit economy within mixed migration flows. They do so either by directly facilitating smuggling of migrants or by requiring migrant smugglers to pay \u201ctolls\u201d for passage or compensation in exchange for security. The presence and activities of foreign combatants and armed groups that cross borders may also cause disruption and create risks for others who frequently cross borders in pursuit of livelihoods or due to kinship ties. These include pastoralists and those involved in cross-border trade, who may face restriction to their movements, suspicion from communities, harassment from security forces and/or attacks from armed groups in border areas. The sudden or unplanned return or relocation of foreign combatants may in some cases create tensions at the community level and needs to be properly assessed and then planned for, particularly when this may be taking place against a backdrop of wider population movements and returns. Conversely, a well-planned and -implemented return and reintegration process that is coordinated with wider stabilization and peacebuilding efforts may help to build social cohesion and encourage reintegration and recovery efforts. At the end of a conflict, support for recovery is needed for all those involved in and impacted by the conflict. This includes the safe repatriation and reintegration of foreign combatants, associated persons, dependants and refugees to their countries of origin as well as support to communities impacted on both sides of the border. Post-conflict support must also include continued identification and ongoing assistance to victims of trafficking. This holistic approach contributes to the process of healing and the capacity to (re-)establish functioning, peaceful communities across a region, thereby helping to prevent the recurrence of conflict and violence. Any DDR programmes, DDR-related tools or reintegration support should be regional in scope in order to deal with the realities of cross-border conflict. Experience has shown that DDR directed at nationals of a specific country in isolation have failed to adequately deal with the problems of combatants being recycled from conflict to conflict within (and sometimes even outside) a region, and with the spill-over effects of conflicts. The identification, disarmament, demobilization, separation, rehabilitation, repatriation and reintegration of foreign combatants requires a stronger and more consistent cross-border focus, involving both host countries and countries of origin and, when appropriate, benefiting both nationals and foreign combatants. This dimension has increasingly been recognized by the UN in recent peacekeeping operations. It is essential to ensure coherence between DDR processes in adjacent countries in regions engulfed by conflict to prevent people from moving around from process to process in the hopes of gaining benefits in more than one location. In all situations, when and how DDR programmes or tools are provided and to whom should depend on a careful assessment of the context that they are meant to address and what is most likely to achieve results. However, as highlighted in this section, regional and cross-border dimensions must always be considered in both programme design and operations.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "a4670019-d447-410e-8da0-2de88734388b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "4.1 Voluntary Integrated DDR shall be a voluntary process for armed forces and groups, both as organizations and individuals. Therefore, groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants/fighters in nationally, locally or privately supported efforts is arguably involuntary, for example, following their capture on the battlefield or their being forced into rehabilitation or reintegration programmes under duress. Internment and detention shall not be the responsibility of those running a DDR programme, although DDR personnel may ask to engage with national authorities who carry out such activities. It is important that legal advice is sought and obtained prior to engaging both with those interned and those carrying out internment. Entry into any DDR programme (or broader DDR process) must always be voluntary, and any repatriation carried out under the auspices of DDR must therefore be on a voluntary basis and in accordance with the principle of non-refoulement as set out in international humanitarian, human rights and refugee law. Outside of DDR processes there may, however, be other legal grounds consistent with international law under which foreign combatants eventually may be returned to their countries of origin, as long as this does not result in a risk of harm that would engage the host countries\u2019 non-refoulement obligations. However, as highlighted in IDDRS 2.10 on The UN Approach to DDR, the nature of conflict environments, and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism, have increased the likelihood that the UN and other actors engaging in DDR may be faced with situations in which people have been detained on security grounds or are in situations that amount to deprivation of liberty. DDR practitioners shall seek legal advice if confronted with surrendered or captured combatants or overt military operations, or if there are any concerns regarding the voluntary nature of DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, decided that Member States shall ensure that any person who participates in the preparation or perpetration of terrorist acts or in supporting terrorist acts is brought to justice (see IDDRS 2.11 on The Legal Framework for UN DDR).", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "fecccd96-5e3e-47d0-bc6e-4a591ce25378", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 9, - "Paragraph": "4.2 Unconditional release and protection of children Children associated with armed forces and groups, including foreign children, shall be treated primarily as victims of human rights violations. They shall be identified as early as possible and immediately transferred to civilian child protection actors without precondition, even during armed conflict and even in the absence of a peace agreement or a DDR process. Children who have been associated with armed forces or groups should not be prosecuted or punished, or threatened with prosecution or punishment, solely for their association with those forces or groups. States should take steps to end the detention of children consistent with international law. Children accused of crimes under international or national law allegedly committed while associated with armed forces or groups shall be treated in accordance with international standards for juvenile justice, which emphasize alternatives to detention and prioritize the rehabilitation and social reintegration of the child. Further specific guidance may be found in IDDRS 5.20 on Children and DDR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "768d9786-1557-4f94-a056-bafedcf63419", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.3 In accordance with the standards and principles of international assistance Host countries are obliged to handle cross-border population movements in accordance with international humanitarian, human rights and refugee law. This includes respect for the human rights of refugees and migrants, and respect for the principle of non-refoulement. The State may have political sympathies or interests with regard to one of the parties to an armed conflict, which may affect their policies or responses in practice. Even if the host country is not neutral, DDR practitioners shall highlight the obligations of the host country and the benefits of complying with the international law and legal frameworks described in section 5. Awareness raising, training and advocacy, as well as the development of individual country strategies to enhance host State capacity, cooperation and compliance with international law standards, should be carried out.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6b541079-4afb-4bf9-9274-9c682c1abe56", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.4 Gender responsive and inclusive The specific protection and assistance requirements of women and girls and men and boys recruited by armed forces or groups need to be addressed, including of those who may be survivors of sexual and gender-based violence (SGBV). This shall include specific consideration of the needs of women who may have performed largely supporting roles, as well as the dependants of combatants/fighters. Their needs will depend on the context, but will often include, at a minimum, reproductive health services and SGBV support services, including psychological support. In cases where the SGBV amounts to human trafficking, victims must be ensured the protections extended to them under the Trafficking in Persons Protocol, and these must include appropriate age- and gender-specific psychological, economic and social assistance (see IDDRS 6.40 on DDR and Organized Crime). In many settings, women and girls who are separated from their wider family and social networks may face specific challenges related to their immediate protection and well-being in the host country and during repatriation and reintegration, and these will require special consideration.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "62efe9fa-8f89-4bc1-a2fb-01e094656146", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.5 Conflict sensitive It is recognized that \u201cdo no harm\u201d shall be a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In relation to foreign combatants, particular measures may be required to manage potential tensions between such groups and communities within host countries. Careful assessment will also be needed prior to their return to ensure that they can be safely received and reintegrated and to consider any potential challenges their return may cause. Failure to undertake the necessary measures and assessments can increase conflict and security risks.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5f3d20f3-3ddf-4ebe-aca7-6ed598f94946", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.6 Context specific The varying reasons for the arrival of foreign combatants in a host country, as well as whether or not that country is involved in an armed conflict, will be among the factors that determine the response of the host country and the international community. For example, foreign combatants may enter a country directly involved in armed conflict, a country that is a neutral neighbouring State, or a non-neutral country not directly involved in the conflict.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "237a9b5f-61d3-410c-9d7b-9f3ec49d88af", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "4.7 Integrated No single international agency has a mandate for cross-border movements of foreign combatants, associated persons and dependants, but all have an interest in ensuring that issues are properly dealt with and that States abide by their international obligations. Therefore, DDR programmes should be carried out within inter-agency frameworks. In principle, such structures may also be used to discuss other DDR activities (i.e., DDR-related tools and/or reintegration support) and to coordinate action when these deal with foreign combatants or have cross-border implications. This is particularly important in relation to any support provided by DDR programmes, given the potential risks associated with ex-combatants attempting to access multiple DDR initiatives across international borders.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "bf8475da-500c-4117-b9f4-f0c502e19251", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "5.1 Frameworks and laws of relevance International law provides several applicable frameworks for dealing with cross-border movements of combatants/fighters and civilians. In particular: International humanitarian law (IHL) is applicable to all: combatants and civilians (including asylum seekers, refugees and migrants). IHL includes specific rules on civilians taking direct part in hostilities or contributing to the general war effort, as well as other categories of non-combatants. Relevant IHL norms on the conduct of hostilities should govern the behaviour of foreign fighters, regardless of their nationality. Foreign fighters are thus subject to the same IHL principles and rules that are binding on any other type of belligerent. International human rights law is relevant in setting the framework for the treatment of foreign combatants/fighters, as well as civilians, including asylum seekers, refugees and migrants. It includes the obligation to respect the principle of non-refoulement, which precludes States from forcibly removing an individual to a country where there is a risk of torture or other serious harm. International refugee law is only relevant for civilians who have submitted an asylum claim and/or have been recognized as refugees. It can, however, include former combatants/fighters for whom it has been verified that they have genuinely and permanently renounced military activities and who have sought asylum. For asylum seekers and refugees, States are bound by the principle of non-refoulement under international refugee law, in addition to relevant obligations under international human rights law. During an international armed conflict, the law of neutrality requires a neutral State to intern foreign troops entering its territory. Under the duty of non-intervention and friendly relations between States, as set out in the UN Charter, States are obliged to act with due diligence to prevent the use of their territory by individuals whose purpose is to attack another State. International law on transnational organized crime is relevant for ensuring access to justice for victims of crime, including those from mixed migration populations, civilians and combatants. It is additionally relevant in aiding to address illicit financial flows, money laundering and corruption. Further information on legal frameworks and laws that are particularly relevant when considering issues related to foreign combatants are considered below.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ed3ca2e5-75b4-4498-82c8-d791370e583f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "5.1.1 The Charter of the United Nations Under article 2(4) of the UN Charter, States have an obligation to \u201crefrain in their international relations from the threat or use of force against the territorial integrity or political independence of any State, or in any other manner inconsistent with the Purposes of the United Nations\u201d (this is regarded as customary international law binding on all States). UN General Assembly resolution 2625 (XXV) of 24 October 1970, which adopted the Declaration on Principles of International Law concerning Friendly Relations and Cooperation among States in Accordance with the Charter of the United Nations, prohibits the indirect use of armed force, through assisting, encouraging or tolerating armed activities against another State by irregular forces, armed bands or individuals, whether nationals or foreigners.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ac23089a-c72c-4ff7-9588-c5f3790cce92", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.2 Law of neutrality The Hague Convention of 1907 dealing with the Rights and Duties of Neutral Powers and Persons in Case of War on Land is regarded as having attained customary law status, making it binding on all States. It requires neutral States to disarm foreign combatants, separate them from civilian populations, intern them at a safe distance from the conflict zone, and provide humane treatment until the end of the war, to ensure that they no longer pose a threat or continue to engage in hostilities. Neutral States are also required to provide interned combatants with humane treatment and conditions of internment. Although the convention relates to international armed conflicts, it is generally accepted that it is also applicable to internal armed conflicts in which foreign fighters from government armed forces or opposition armed groups have entered the territory of a neutral State. It also contains an obligation to intern such fighters.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "4df1fe0e-08f2-4b69-b852-a1e7c5b48232", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.3 UN conventions on statelessness The 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness are complemented by international human rights treaties and provisions relevant to the right to a nationality. They are of relevance to dealing with foreign combatants, as they define and limit the circumstances in which someone can be deprived of their nationality.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dbf01c90-03b8-458e-ac9f-1eb16997ec51", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.4 International humanitarian law In accordance with article 4(B)2 of the Third Geneva Convention of 1949 relative to the treatment of prisoners of war, which is applicable in the context of international armed conflicts, foreign combatants interned by neutral States are entitled to treatment and conditions of internment given to prisoners of war under the convention. Additional Protocol II, Part II, relating to protection of victims of non\u00adinternational armed conflicts, provides for humane, non\u00addiscriminatory treatment for those who do not take a direct part or who have ceased to take part in hostilities, whether their liberty has been restricted or not.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9750f29e-e905-486e-9240-a84f0238bb01", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.5 International human rights law The 1984 UN Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment contains a broad non\u00adrefoulement provision, which states that \u201cno State Party shall expel, return (\u2018refouler\u2019) or extradite a person to another State where there are substantial grounds for believing that he would be in danger of being subjected to torture\u201d. There are no exceptions to this non\u00adrefoulement provision, so foreign combatants may not be forcibly returned to a country of origin in situations where there are grounds to believe that they would be at risk of torture if returned. \u201cFor the purposes of determining whether there are such grounds, the competent authorities shall take into account all relevant considerations including, where applicable, the existence in the State concerned of a consistent pattern of gross, flagrant or mass violation of human rights\u201d (art. 3[2]). Articles 6 and 7 of the International Covenant on Civil and Political Rights also provide important potential protections in terms of the right to life and the prohibition against anyone being subjected to torture or to cruel, inhuman or degrading treatment or punishment. The United Nations Convention on the Rights of the Child, adopted in 1989, recognizes the human rights of children, defined as persons up to the age of 18 years. Its Optional Protocol on the involvement of children in armed conflict, adopted in 2000, aims to protect children from recruitment and use in hostilities and is of particular importance to this guidance (further information can be found in IDDRS 5.20 on Children and DDR). The Security Council has made a number of resolutions emphasizing the importance of recognizing and including the concerns of women in DDR. Security Council resolution 1325 (2000) recognizes that women are an asset to both peace and DDR processes and must be afforded the right to participate fully. It encourages all those involved in the planning for DDR \u201cto consider the different needs of female and male ex-combatants and to take into account the needs of their dependants\u201d, and calls on parties to armed conflict to \u201ctake special measures to protect women and girls from gender-based violence, particularly rape and other forms of sexual abuse, and all other forms of violence in situations of armed conflict\u201d. These calls have been reiterated in resolutions 1820 (2008), 1888 (2009), 1889 (2009), 2106 (2013) v and 2122 (2013). Resolution 2122 calls for the full participation and protection of women as part of DDR and security sector reforms.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "03f75a3c-3d8b-4b40-b75c-e798163a5660", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 13, - "Paragraph": "5.1.6 International refugee law A refugee is defined in the 1951 Refugee Convention and its 1967 Protocol as a person who is outside his/her country of origin; has a well-founded fear of persecution because of race, religion, nationality, membership in a particular social group, or political opinion; and is unable or unwilling to avail him/herself of the protection of that country, or to return there, owing to the well-founded fear of persecution. Several later regional instruments extend this definition. These include the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa and, in Latin America, the Cartagena Declaration of 1984. These extended the definition to cover more broadly those who have been threatened or impacted by violence or conflict, or had their human rights violated. An important principle is that asylum has an inherently peaceful, civilian and humanitarian character. Military activity is incompatible with asylum, and persons who pursue military activities in a country of asylum cannot be asylum seekers or refugees. As such, only civilians can benefit from the protection that asylum and the granting of refugee status affords. Maintaining the civilian and humanitarian character of asylum is\u00a0an established and respected international refugee standard and a principle of international protection. It derives from rules in international refugee law, human rights law, international humanitarian law, national law, the United Nations High Commissioner for Refugees statutes, and the UN Charter, and is aimed both at protecting individual refugees and, more widely, maintaining the integrity of the institution of asylum. An active foreign combatant cannot be considered a refugee, but it is possible that refugee status may be conferred if it is clear that an individual has genuinely and permanently given up military activities, provided that he/she is determined to be eligible for refugee status. Foreign combatants who wish to seek international protection as refugees are therefore expected to go through a process that involves disarmament, separation and verification that they have renounced military activities, enabling a determination of refugee status to be made. The presence and activities of foreign combatants in refugee settings has been widely recognized as an issue that can exacerbate the vulnerability of refugee populations and lead to increased risks of violence and insecurity, including SGBV, particularly for women and children. Additionally, when the civilian and humanitarian character of asylum is compromised, it often causes tension with host communities and authorities and can impede asylum seekers\u2019 access to basic rights. It has also been seen to create increased insecurity for humanitarian personnel and threaten humanitarian access. Given the fundamental importance of the above to the safety and protection of refugees, asylum seekers and host communities, substantial effort and emphasis must be placed on the maintenance of the civilian and humanitarian character of asylum and the need to ensure the clear separation of combatants/fighters from refugees. Ongoing monitoring will also be required to detect the presence of weapons and ammunition inside refugee sites and, in some circumstances, weapons searches may be conducted. It is recommended that searches should be conducted by police rather than by the military authorities. Guidance related to the safe and secure collection, registration, storage, transportation and/or disposal of weapons, ammunition and explosives is provided in IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management. Written guidelines have been developed covering some of the practical issues related to disarmament, screening to separate combatants from civilians, and assisting in circumstances under which former foreign combatants may be able to renounce violence and, if they wish to seek asylum, be admitted into procedures to determine whether they are eligible for refugee status. This guidance is drawn upon and referenced, where appropriate, in subsequent sections, but draws on the legal frameworks highlighted above and several overarching principles and standards summarized below. Primacy of state responsibility: The State is responsible for the physical protection of refugees and the civilian and humanitarian character of asylum. While others, including the UN, may offer support, they cannot assume these functions. Access to territory and non-refoulement: Nothing should prevent persons seeking international protection from accessing the territory where they wish to submit an asylum claim or lead to their refoulement. Right to liberty and the security of persons and the prohibition of arbitrary detention: State action to ensure security must not lead to arbitrary detention \u2013 and both detention and internment may only be undertaken in accordance with and as authorized by national law, and in compliance with international law, including the minimum procedural safeguards. Access to assistance and services: Those identified as combatants should not be allowed to enter refugee sites or have access to services provided in them until such time as they have genuinely and permanently renounced military activity and have been admitted into asylum procedures. Beyond refugee assistance, it is important to note that this does not free States from responsibilities to provide humanitarian assistance and health care under the tenets of international humanitarian law (see section 5.1.4). Children, irrespective of whether they were combatants, have a right to assistance and protection, as victims of human rights violations. Protection considerations for women: Women\u2019s and girls\u2019 specific vulnerabilities and needs should be assessed and met, in particular survivors of or those who are at risk from SGBV. If women and girls are deprived of their liberty, they should be accommodated in separate facilities from men and, as far as possible, be under female supervision, and all security personnel should receive training on sexual exploitation and abuse, gender, and gender-based and sexual violence prevention and response. Clear modalities for reporting violence and seeking assistance should be provided to all, including access to reproductive health care, psychosocial support, etc. Efforts to ensure women and children are accommodated together and/or are reunited as soon as possible should be made (see IDDRS 5.10 on Women, Gender and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "6db1d89e-db85-4815-90e5-25f41ef134df", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.1.7 International law on transnational organized crime According to article 25 of the 2000 UN Convention against Transnational Organized Crime and its Protocols, each State Party is required to take appropriate measures within its means to provide assistance and protection to victims of offences covered in the convention, including but not limited to participation in an organized criminal group, money laundering, corruption, trafficking in persons and smuggling of migrants. State Parties must additionally establish appropriate procedures to provide access to compensation and restitution for victims of offences under the convention and must enable the view and concerns of victims to be presented and considered at appropriate stages of criminal proceedings against offenders. Furthermore, in the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, article 6 calls on States to implement measures to provide for physical, psychological and social recovery of victims of human trafficking, including appropriate housing, counselling and information, medical and psychological assistance, and employment and education opportunities.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "8a7d6d45-d93b-48e6-83ff-6d92369208f6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.1.8 Specific legal frameworks and protections for children Children associated with armed forces or groups shall benefit from special protection and assistance. They shall be regarded primarily as victims, and their best interests shall be a primary consideration. DDR of children is always a priority and should not wait until mechanisms for adult DDR are established. Identification of children should take place at the earliest possible moment. A child protection adviser or agency should be given access to the disarmament site, with children placed under the care of civilian child protection actors as swiftly as possible. Children\u2019s immediate protection needs shall be met, and support provided in relation to issues such as food, shelter, and health care, including SGBV concerns. For children outside of their country of origin, particular emphasis and attention may need to be given to the establishment of services such as interim alternative care and cross-border family tracing. Children shall receive specialized gender- and age-appropriate support from trained child protection actors, including on issues related to nationality determination and family reunification processes. Legal and protection issues shall be carefully considered, with the best interests of the child as a primary consideration and taking into account issues related to safety and confidentiality, as well as the need to reestablish contact with family members whenever, and as swiftly as, possible. IDDRS 5.20 on Children and DDR applies to all children, irrespective of age or legal status, and should be consulted for general guidance and information on relevant legal protections. In addition, the following issues related to children who find themselves outside their country of origin should be considered in relation to their legal status and any measures then required. Section 8.1 also provides specific guidance on support to children who may be in this situation.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "488cf280-ac3f-41c1-82f0-dd71bbbcf82b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.2 Status of and issues related to specific groups or entities No single definition or typology can be used to describe situations or groups within which foreign combatants may be found. In some contexts, foreign armed groups may cross a border in order to find a safe haven, flee attack or regroup. In other situations, groups may be militarily active on both sides of a border. In some contexts, armed groups may recruit and contain foreign nationals who are either sympathetic to the cause being fought for or who have other reasons for participating in combat. It is important that each context is properly assessed; the importance of assessment is further considered in section 6.2. However, when dealing with situations in which foreign combatants may be present, several groups warrant specific attention, as highlighted in the sub-sections below.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "1c854592-86c5-4daf-bef0-35d48bbe0e0c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 16, - "Paragraph": "5.2.1 Mercenaries A mercenary is defined under international humanitarian law (Geneva Conventions Additional Protocol I relating to the Protection of Victims of International Armed Conflicts) as \u201cany person who is especially recruited locally or abroad to fight in an armed conflict and is motivated to take part in hostilities essentially by the desire for private gain, and is promised, by or on behalf of a Party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar ranks and functions in the armed forces of that Party\u201d. The use of mercenaries and involvement in such activity is prohibited under international law, and mercenaries do not enjoy some of the protections granted to regular combatants or prisoners of war. A Working Group on the Use of Mercenaries was established under the Human Rights Council in 2005. It is important to consider when examining the role of foreign combatants whether or not groups or individuals may fall under the definition of mercenary. When deciding whether this distinction can be made, it is important that both the context and potential utility of its use are taken into careful consideration. In many cases, an individual may be motivated by the desire for economic gain to some extent, but the factors underpinning recruitment are likely to be complex and multifaceted, and labelling and attempting to deal with the bulk of the rank or file within a group as mercenaries is likely to be both contested and have limited practical utility. However, there may be circumstances when the use of the relevant articles of international law on mercenarism to target a group\u2019s backers or recruiters may prove highly effective.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e8471f35-fc5d-42ec-99d0-61d35e808359", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 16, - "Paragraph": "5.2.2 Private military and security companies In recent years, concern has grown about the involvement of private military and security companies in conflict contexts and their use of foreign nationals. A private military or security company can be defined as \u201ca corporate entity which provides on a compensatory basis military and/or security services by physical persons and/or legal entities\u201d, and the varied services such a company provides range from physical armed guarding to knowledge and skills transfer on security measures and their deployment and use of foreign nationals. Obvious issues arise when groups are involved in combat or aggressive security operations; it may be difficult for their personnel, particularly foreign nationals, to be held to account for their behaviour and lack of respect for human rights. There have been a few notable initiatives to try and control and regulate the activities of these groups. One is the 2008 Montreux Document, whose development was led by the Government of Switzerland and the International Committee of the Red Cross, and which is intended to promote respect for international humanitarian law and human rights law in contexts where private military and security companies are present in armed conflicts. Out of the Montreux Document process emerged the International Code of Conduct for Private Security Providers. An association of private military and security companies continues to promote dialogue between them on their interests. However, while important, these efforts are voluntary in nature, and attempts to create an internationally legally binding arrangement have remained elusive. Several States have put in place legislation regarding private military and security companies and their use of foreign nationals. When considering these issues, practitioners should therefore identify and examine the appropriate national legislation for both the country in which the companies are operating and those from which foreign nationals are drawn.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2d024965-8758-49b4-b857-0c31934c994d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.3 Pastoralists Pastoralism in its different forms continues to be an important source of livelihood for significant numbers of people. There are an estimated 268 million pastoralists in Africa alone. Pastoralism is critically dependent on mobility and the use of transient resources in areas with often fragile ecosystems, and has evolved and changed over thousands of years. Use of resources often involves the crossing of international borders. Pastoralists and conflict are often conflated in discussions on border security. While competition and contestation over access to resources such as pasture and water can give rise to conflict between pastoralist groups and those who rely on other livelihood systems, such as settled farmers, the reasons for this are often complex, with pastoralists themselves often negatively affected by other conflict drivers and trends. In the context of cross-border movements, it is important to recognize existing pastoralist groups as among those with legitimate reasons to cross borders in pursuit of their livelihoods and to try and ensure that security protocols and screening procedures established to manage cross-border security do not impede freedom of movement more than necessary and do not result in specific groups\u2019 being singled out for suspicion or stigmatization. Such restrictions may exacerbate conflict and insecurity rather than prevent it.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9a1dd273-81af-41e0-b375-9a002521fe98", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.4 Cross-border traders Small-scale cross-border trade, which is often informal in nature and dominated by women, is an important means of livelihood in many border areas. It also enables and facilitates contact between communities that may be isolated because of conflict and insecurity. As with pastoralists, it is important that cross-border trade is not impeded more than necessary by procedures related to security and screening. In some instances, cross-border traders may be important sources of information to DDR practitioners on issues related to cross-border movements and associated challenges.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9ec9ba0c-5c51-4f88-800b-bf3889b02e02", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.5 Foreign terrorist fighters Foreign terrorist fighters are individuals who travel to a State other than their State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in terrorist acts or the providing or receiving of terrorist training, including in connection with armed conflict. In situations where foreign terrorist fighters may be present, specific actions and measures will be required by States, but these are not covered in this module. All said measures must be implemented in accordance with international human rights law, international humanitarian law and international refugee law. Specific references to the international counter-terrorism framework can be found in IDDRS 2.11 on The Legal Framework for UN DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "04a0bd98-cacc-4fb1-94d9-19eb3c8b141a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.3 Notes on internment and its legal basis Internment is not the responsibility of DDR practitioners but rather the host State. If a national authority seeks advice and support in relation to internment, DDR practitioners shall seek advice and refer to human rights, legal and political affairs personnel. Overall guidance can be found in IDDRS 2.11 on The Legal Framework for UN DDR. The International Committee of the Red Cross (ICRC) defines internment as a specific kind of deprivation of liberty. Internment refers to the non-criminal detention of a person based on the serious threat that their activity poses to the security of the detaining authority in relation to an armed conflict. It is only lawful when imperative reasons of security require it (paras. 755 and 759, ICRC Commentary on Common Article 3 to the Geneva Conventions, 2020). In situations of armed conflict, it can be ordered by the executive branch \u2013 not the judiciary \u2013 without criminal charges being brought against the\u00a0internee. Internment is an exceptional measure that is sometimes used to control or manage foreign combatants. While combatants may be subject to internment on account of their membership in armed forces (for imperative reasons of security), the internment of civilians must only be undertaken on an individual basis. Collective internment based on ethnicity or nationality is prohibited under international law. If legal requirements are followed, some form of internment or other restrictions of movement may be placed on foreign combatants, including in some instances as a component of peace or ceasefire agreements. Any rules and procedures aimed at avoiding risks posed by foreign combatants or fighters, including restrictions on freedom of movement, places of residence and travel, deprivation of liberty, detention or internment, must be based on a clear legal framework and are subject to IHL, IHRL and refugee law. It is important for DDR practitioners to understand the legal basis for internment, as those responsible for DDR are likely to be in contact with both those interned and those responsible for internment. Because of the potential for internment to be abused and, particularly, for it to amount to arbitrary detention, several principles and safeguards must be in place and adhered to. In interactions with those responsible for internment, DDR practitioners must advocate for these principles and safeguards to be upheld. They are summarized in Box 1. TABLE 1: PRINCIPLES AND SAFEGUARDS FOR INTERNMENT Practical issues related to internment are considered further in section 7.2.3, and issues related to children deprived of their liberty are highlighted in section 8.1.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "7723f70c-6189-4cb3-93df-aade4a12b716", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "6. Interventions to resolve issues related to foreign combatants Interventions should always be led by proper planning and the development of evidence-based responses. IDDRS 2.10 on The UN Approach to DDR makes it clear that \u201cdo no harm\u201d is a standard against which all DDR programmes, DDR-related tools and reintegration support shall always be evaluated. Proper planning is critical to ensuring that these undertakings can be met and effective interventions appropriate to the context put in place. This is particularly important in the highly complex security environments in which DDR support is often requested, especially in situations involving cross-border population movements.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8b7af404-424d-4de2-aedd-763bc09b9ff3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1 Considering potential options Repatriation and reintegration in the country of origin will be the most tenable and durable solution for the majority of foreign combatants and associated persons, as long as the situation in their country of origin allows. Key actions in support of this outcome are the main focus of section 7. In situations where individuals or groups are either unable or unwilling to repatriate, several other potential solutions may be explored and applied.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b683e3b8-2a13-4999-8cb1-c5d29448745a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1.1 Local integration In some contexts, foreign combatants and associated persons, including dependants, may be offered the right to stay by host country Governments. This option will be highly dependent on the relationship of the group or individuals with local communities and authorities and the conflict situation in the country. If this option is to be considered by host Governments, it should be consistent with wider conflict and peacebuilding frameworks. If this option is used, there may be little or no requirement for DDR support or, alternatively, foreign combatants may go through a DDR process offered by the host country, if one exists. If admitted into DDR programmes in the host country, foreign combatants must understand that this is likely to mean they may be excluded from repatriation and reintegration support in their country of origin unless specific arrangements are made. It is also important that their and their families\u2019 legal status is properly dealt with in relation to right of stay and citizenship and access to services, etc.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "784d3e44-62db-42f5-8a85-160c465c2d7a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1.2 Refugee status in host country In some circumstances, foreign combatants who have renounced armed violence may be granted asylum and refugee status. If they wish to do so, foreign combatants can be admitted into eligibility procedures. However, in line with maintaining the overall integrity of the institution of asylum outlined in section 5.1.6, this process involves the robust exploration and establishment of the following: The individual has genuinely and permanently given up arms and his/her status as a combatant/fighter, and has become a civilian. The individual meets the definition of a refugee under the 1951 Refugee Convention. This includes a determination that the individual is not excluded from being offered protection as a refugee under refugee conventions. According to article 1F of the 1951 Convention, grounds for exclusion related to a person\u2019s criminal conduct include crimes against humanity, war crimes, crimes against peace, serious non-political crimes committed outside the country of claimed refuge, and acts contrary to the purposes and principles of the United Nations. It should be noted that exclusion is justified only if it is determined that an individual incurred individual responsibility for one or more of these acts; mere membership in a group that committed such acts is not sufficient.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ccedbfa6-93c1-43e1-93dd-4340fcf3e397", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.1.3 Relocation to a third country Relocation to a third country may be an option for a small number of foreign combatants and associated persons who are unable or unwilling either to return home or remain in the host country. However, third countries are often very reluctant to consider applications of this type from persons who have previously been active combatants. Such options may be explored by the host country through diplomatic contacts or occasionally by the UN if requested.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dd1c0c7a-4838-4f13-97ee-4621ac180791", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.2 Initial assessment and information requirements This section highlights several key steps and processes to be considered in planning. Time should be spent considering the range and type of stakeholders and information sources available to answer some of the questions below. As much use as possible should be made of existing data sources. Issues of confidentiality and do no harm must be carefully considered in relation to the access and use of information. Much of the information in this section will be of interest not only to DDR practitioners but all those involved in wider conflict resolution and peacebuilding efforts. Data-gathering using multidisciplinary and inter-agency teams offers the best chance of obtaining reliable and comprehensive information as well as optimizing the use of time and resources. DDR practitioners should ensure, in particular, that available information related to group dynamics and structures is systematically collected and analysed (see section 6.2.2).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "041ddda9-04cc-413b-abe8-55153f9d86e7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.2.1 Conflict and security analysis It is crucial to understand both the wider conflict and security context that is being dealt with as well as the specific issues related to the groups involved. It is important that the situation and contexts on both sides of the border are analysed and considered. Some of the issues that require initial assessment and analysis are highlighted in Table 1. TABLE 2: CONFLICT AND SECURITY ANALYSIS \u2013 ISSUES TO CONSIDER AND RATIONALE", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8f427def-0b7c-430e-a3c8-201a55bc1d97", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 22, - "Paragraph": "6.2.2 Assess group dynamics and structures As detailed information as possible will need to be gathered and processed on the group(s) that need to be engaged with. This will help facilitate tailored responses to their specific challenges and needs as well as an understanding of the risks involved in interventions with the group. Key issues are highlighted in Table 2. TABLE 3: ISSUES TO CONSIDER INVOLVING GROUP STRUCTURES, DEMOGRAPHY, HEALTH AND SOCIAL STATUS", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7f3b24fb-23b2-4d55-b7e9-7e0bfada5f1a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 24, - "Paragraph": "6.3 Eligibility for DDR and issues related to specific groups Establishing eligibility criteria is important for DDR but is notoriously difficult. In the case of foreign combatants, it is particularly important to ensure that processes are put in place to verify nationality prior to repatriation and any access to associated benefits or support that may follow. In general, DDR should be open to all persons who have taken part in conflict, including foreigners and nationals who have crossed international borders, with arrangements within programmes then established to determine options available for foreign nationals. Sensitization is needed both in countries of origin and host countries to ensure that all persons entitled to participate in DDR programmes are aware of their right to do so. Special attention shall be given to ensuring women are aware of their rights and opportunities to enter programmes. Entry into DDR programmes shall always be voluntary. In situations where conflict is ongoing, and individuals or groups may be emerging because of being captured in battle or surrendering, issues around eligibility can become particularly complex. In some instances, individuals may even be re-recruited or rejoin armed groups, and there may be strong arguments for denying such people access to DDR or support. At the same time in some contexts, recruitment methods such as abduction and coercion may also feature highly, and individuals may have limited choices or agency. Eligibility criteria must therefore be developed based on the context faced, and status determination should be undertaken by relevant national and local authorities with support from UN missions and agencies. Special attention should be given to children at all times (see IDDRS 5.20 on Children and DDR). While it is important that the eligibility criteria are context specific, it is equally important that they are clear, compatible with relevant legal frameworks (see section 5), and consistently and unambiguously applied.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "43bb182b-d466-41ab-918a-6d26cfb0bd16", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 24, - "Paragraph": "6.3.1 Mercenaries As highlighted in section 5.2.1, not every foreign combatant meets the definition of a mercenary. In reality, it may sometimes be difficult to distinguish between mercenaries and other types of foreign combatants. Even when a foreign combatant may fall within the broad definition of a mercenary, this does not limit the State\u2019s authority to include such a person in DDR despite any legal action States may choose to take against mercenaries and those who recruit them or assist them in other ways. It is important to provide viable options and exit strategies in order to break the cycle of recruitment and weapons circulation and provide the majority of individuals with sustainable alternatives so that the rank and file of such groups may often be included in programmes. DDR practitioners may consider establishing specific criteria to deal with such cases. Issues to consider might include: Who is employing and commanding mercenaries, and how do they fit into the conflict? Do mercenaries pose specific risks to the peace process, and are they factored into peace accords or frameworks? If there is resistance to account for mercenaries in peace processes, what are the underlying political reasons, and how can the situation be resolved? How can mercenaries be identified and distinguished from other foreign combatants/fighters? Do individuals have the capacity to act on their own? Do they have a chain of command? If so, is their leadership seen as legitimate and representative by the other parties to the process and the UN? Can this leadership be approached for discussions on DDR? Do its members have an interest in DDR? If mercenaries fought for personal gain, are DDR benefits or activities likely to be large enough to make them genuinely give up armed activities? If DDR is not appropriate, what measures can be put in place to deal with mercenaries, and by whom \u2014 their employers and/or the national authorities and/or the UN? Depending on the context, it may be appropriate to have different options available for the rank and file and leaders/recruiters, etc.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "462762b0-08f8-4528-9a7e-cd924a5849c9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 25, - "Paragraph": "6.3.2 Foreign terrorist fighters As mentioned in section 5.2.5, foreign terrorist fighters are individuals who travel to a State other than their State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in, terrorist acts or the providing or receiving of terrorist training. DDR practitioners need to be aware that Member States have specific obligations under the international counter-terrorism framework, and that this may have implications for screening and repatriation processes in particular. Specific references to the international counter-terrorism framework are contained in IDDRS 2.11 on The Legal Framework for UN DDR.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0cd8f782-ec30-424f-8e77-49f01fe852ae", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "6.4 Criminal prosecutions and transitional justice Criminal prosecutions are not the remit or responsibility of DDR practitioners. At the same time, it is important that DDR should not be construed or perceived as providing pathways to impunity for international crimes and serious human rights violations and abuses. DDR practitioners need to be aware that some foreign combatants and associated persons may be subject to legal processes, particularly where they are accused of serious crimes and may be prosecuted in host countries, or returned to their countries of origin or to third countries to face justice. It is also important to note that the principle of non-refoulement applies, with those handing over individuals still obliged to ensure that they will not face torture or inhumane or degrading treatment if being repatriated. In many contexts, transitional justice approaches may be used to help ensure accountability for victims and promote truth seeking, reparations and guarantees of non-recurrence. Applied appropriately, transitional justice and DDR can support each other by helping to reinforce community security and social cohesion. To achieve this, close consultation and interaction is required at all stages of planning and implementation. Those responsible for planning DDR processes, including those dealing with foreign combatants, should seek early and regular consultation with those working on transitional justice. Further guidance may be found in IDDRS 6.20 on DDR and Transitional Justice.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d69485f6-0f13-43f8-bbb2-1a25f2f710b6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 25, - "Paragraph": "7.1 Identify and strengthen policy and coordination frameworks Identifying relevant policy and coordination frameworks in the region affected and at country levels is an important step in planning, as it will help to determine potential responses and priorities for further action and development. Close coordination and links among all those working on DDR and related issues in a region are essential. There should be regular coordination meetings on DDR among UN missions, national commissions on DDR or competent government agencies, and other relevant agencies. TABLE 4: ISSUES TO CONSIDER \u2013 POLICY COORDINATION FRAMEWORKS AND PROCESSES Specific agreements surrounding the repatriation of foreign combatants and protocols related to this are discussed and considered in section 7.2.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "fc48a166-c25f-4412-81dc-df9f90789c78", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 26, - "Paragraph": "7.2.1 Entry into DDR As highlighted in section 6.1, the establishment of options for foreign combatants and associated persons should follow a detailed analysis of the context in the host country and country of origin as well as of the groups involved, including their composition. As noted previously, return to their country of origin will be the most tenable and durable solution for the majority of people. However, in situations where individuals or groups are either unable or unwilling to repatriate, asylum may be granted where it can be verified that they have genuinely and permanently renounced military activities, provided it is determined that they are eligible for international protection as refugees or under international human rights law. In all these circumstances, some form of DDR \u2013 whether a formal programme, a DDR-related tool or reintegration support \u2013 is likely to be needed, with its precise scope and components determined by the context. Entry into or referral to such programmes may take different forms depending on the situation. In some circumstances, large groups may be offered entry into a DDR process as part of negotiations or formal agreements; in other cases, individuals or small groups may self-refer or be referred by others. Entry into DDR shall be voluntary, with an individual making an informed choice to participate. It should also be based on an assessment as to whether an individual meets the eligibility criteria and that there is no reason for their exclusion (see IDDRS 2.11 on The Legal Framework for UN DDR). Trust in a process may take time to establish. Foreign combatants are likely to have specific concerns about security and what will happen to them during DDR and, in particular, about repatriation to their country of origin. It is vital that questions of this nature are answered honestly and as fully as possible by all those concerned. It is also important that expectations are managed carefully from the outset. Information and communications with stakeholders need to be tailored to address their specific concerns. Further guidance on strategic communications can be found in section 8.5 of this module and in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bb1a2a2a-d201-4a3a-b496-d822e773b2be", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 27, - "Paragraph": "7.2.2 Disarmament It is important that disarmament of foreign combatants is carefully planned and implemented, as it should be for any other group. Whether or not individuals and groups being dealt with have weapons will depend on the context. Small groups or individuals leaving armed groups may not always do so with their weapons. In some cases, groups may be disarmed at the border of the country to which they will return. Disarmament should involve the collection and registration of weapons and their safe and secure storage, transportation and disposal in line with international guidelines and standards . Discussion may need to take place and agreements reached over whom items such as vehicles or other equipment should be eventually handed over to. It may be authorities in the host country or the country of origin. It is important that it is properly agreed and discussed between the Governments and authorities concerned. In addition to the sections below, IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunitions Management may be referred to for further guidance.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "cc12ebf1-01f9-4823-9a14-cf981ddfa7b4", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 27, - "Paragraph": "7.2.3 Screening and verification The overall objective of screening in relation to DDR is to ascertain if an individual is eligible to participate in DDR (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 4.20 on Demobilization). In situations where the presence of foreign combatants is known or suspected, screening will also be intended to help separate foreign combatants from civilians. Initial screening: In an ideal situation, initial screening to identify foreign combatants should be done at or near the border or other entry points, with separate screening areas for women. In most circumstances it is the responsibility of the host State to do this. In practice, in some contexts this may prove to be almost impossible, and might even increase the risk of violence; depending on the context, the initial screening may occur farther away from the border or at a later point in time. Practicalities associated with the initial screening need to be carefully considered by all involved, including those from UN agencies and missions who may be involved in monitoring and the provision of technical advice and training on disarmament and screening to host Governments, including their security forces or agencies. Maintaining safety and security and upholding the civilian and humanitarian nature of asylum will be important considerations when determining the extent and nature of screening processes. Much will depend on relationships between the countries involved and cross-border communities, and for this reason the overall background and conflict context must be carefully analysed and understood (see section 6). Advice and guidance contained in the Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces must also be carefully considered and followed. It is important that procedures and processes are thought through and are not perceived as obviously discriminatory, particularly if these appear to be based on ethnicity or religious affiliation. Issues related to data protection and the use of information from a protection and do no harm perspective must be carefully considered. As far as possible, self-determination and reporting should be encouraged. However, additional criteria and checks are an important mechanism for identifying and avoiding any possible perverse incentives associated with potential later admission to DDR and the inflation of group numbers in order to obtain actual or anticipated benefits. Given that being identified as a foreign combatant may lead to a high degree of stigma, the burden of proof required to assign the status of foreign combatant should be high and mechanisms for appealing decisions should be in place. Potential techniques for identifying foreign combatants are summarized in Table 4. TABLE 5: POTENTIAL TECHNIQUES FOR IDENTIFYING FOREIGN COMBATANTS/FIGHTERS Screening procedures and criteria shall be tailored to age and gender, including the specific needs of women and girls. Children, including children associated with armed forces or armed groups (CAAFAG), must be given priority for processing in accordance with the guidance provided in IDDRS 5.20 on Children and DDR. This will include the presence of child protection actors during the screening process, as well separate arrangements during the screening and the provision of ongoing protection and interim care of children unless they are accommodated with a parent/caregiver, and this has been determined to be in the child\u2019s best interests. It is particularly important to prioritize and screen for victims of human trafficking, as they may suffer re-victimization if treated as criminal offenders rather than victims of a serious crime. Those involved in determining and implementing identification procedures should be aware of the complex victimhood and vulnerabilities of persons trafficked and not operate according to stereotypes. Verification of nationality: Processes and procedures to determine nationality will be required prior to any repatriation process. Establishing practical processes to determine nationality should include dialogue with the persons involved and officials from their countries of origin. It might also include those responsible for reintegration programming in the country of origin and/or immigration officials and relevant government departments, as well as cooperation with specialized agencies, where appropriate. In some situations, support might also be usefully sought from local leaders in countries of origin who may be able to assist in verifying an individual\u2019s place of origin or extended family and clan networks. In situations of ongoing conflict and insecurity, the risks associated with screening should be carefully assessed. Health and vulnerability screening: This is normally a component of demobilization processes and includes physical health, including reproductive health, HIV/AIDS and STIs, sexual violence, and mental health. It is essential to plan for maternal health services availability on site in case of pregnant or lactating mothers (see IDDRS 4.20 on Demobilization and IDDRS 5.10 on Women, Gender and DDR). Whether an in-depth health screening is carried out in the host country or is undertaken in the country of return or relocation will to some extent depend on the context and security situation. However, at a minimum it is important that health status is ascertained, and any vulnerabilities are identified and catered for prior to travel. Documentation and registration: Screening and registration processes increasingly make use of the collection of biometric data (e.g., fingerprints), which can be an important tool in attempts to prevent recycling and multiple registration. The use of this type of technology is widespread, but when sharing information, issues related to how it may be used by third parties need to be carefully considered. Appropriate data protection procedures must be in place, and those being screened for entry into a DDR programme should give their informed consent for the collection of biometric data. Particular care must be exercised in the capture and use of data on children, and information collected for humanitarian purposes should not be shared for military or intelligence purposes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "6bcdb238-cff4-48cb-bebb-57f93eed72b2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "7.3 Safe repatriation As previously highlighted, the repatriation of foreign combatants is the preferred solution if they do not have a legal basis for remaining and as long as their return is not in violation of the principle of non-refoulement. Prisoners of war shall be released and repatriated without delay after the cessation of active hostilities.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "36e3455f-bc3d-4baa-834f-9ff20f6e2b9e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 29, - "Paragraph": "7.3.1 Confidence building It may take time to build confidence that it is safe to return. Foreign combatants and associated groups may wish to receive assurances regarding their legal status, physical security and options for reinsertion and/or reintegration support. In addition to the provision of accurate information, including about the situation in return areas, support might be offered to family tracing and the re-establishment of family contacts. This needs to be undertaken carefully, and in line with do no harm principles. In some contexts, and depending on the security situation, visits by local leaders from the country of origin to the locations where foreign combatants are located may be helpful. Specific protection risks and threats to women\u2019s return shall be planned for with viable options that prioritize do no harm.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "b19086b1-8336-41d3-a1ff-fb8a07e4661f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 29, - "Paragraph": "7.3.2 Repatriation agreements As part of regional DDR processes, agreements should be concluded between countries of origin and host countries to allow both the repatriation and the incorporation into DDR programmes of foreign combatants and associated groups. UN peacekeeping missions, where present, national Governments and regional organizations all have a key role to play in carrying out such repatriation agreements, particularly in view of the sensitivity of many of the issues involved. They should include clear descriptions of the roles and mandates of all key stakeholders. Agreements should contain guarantees for the repatriation in safety and dignity of those concerned, bearing in mind, however, that States have the right to try individuals for criminal offences, unless they have declared amnesties on specific issues. Guarantees in this context may include an amnesty for desertion or an undertaking that no action will be taken in the case of former combatants/fighters from the government forces who laid down their arms upon entry into the host country. The UN does not endorse provisions that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights, and relevant Security Council resolutions relate to Member States\u2019 obligations to bring those responsible for terrorist crimes to justice. Those facing potential prosecution in their home countries are likely to be returned under additional legal agreements, including extradition arrangements in some cases, and not under the auspices of DDR programmes. If there are doubts or concerns about the status of individuals or their rights, specific legal advice should be sought or referral made. Repatriation agreements may also provide the basis for determining nationality in line with requirements highlighted under section 7.2.4. This would include methods of determining the nationality of those involved, deciding on the country in which those involved will participate in a DDR programme and determining the country of eventual destination. Additional considerations need to be made where civilian spouses and children are of different nationalities than the foreign combatants, taking into account their views and wishes and the best interests of the child. Repatriation agreements should also acknowledge the right of civilians to apply for asylum and to have their refugee claims determined by the competent authorities in line with international legal standards.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "18e4e926-a76d-4582-a43f-5c93593ed758", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 30, - "Paragraph": "7.3.3 Travel as a component of DDR Safe and secure travel should be properly planned for and resourced. Governments and UN missions will be responsible for repatriation movements of foreign combatants/fighters and their families. Such movements should be based on informed consent and will require pre-departure and travel support, including internal transportation, assessments to identify conditions of public health significance and determine fitness to travel, and provision of medical escorts where necessary. Although it should already have been considered and discussed, an assessment of any risks of ill treatment, persecution or other human rights violations that could result from the return to country of origin must be conducted. Foreign combatants and associated persons should be screened against a set of criteria, including medical status, documentation and vulnerabilities. Authorities in both locations should agree on travel documents required and how immigration will be facilitated. Movements in the context or voluntary return and repatriation should broadly consist of the three phases highlighted in Table 5. TABLE 6: REPATRIATION PHASES AND KEY CONSIDERATIONS Every effort should be made to ensure that family unity is preserved in repatriation movements. UN missions, where existing, should support the Governments of the host country and country of origin by assisting with the logistics, including transportation. Where foreign combatants have family members or other dependants in refugee sites and settlements, there should be close consultation with relevant entities so that the voluntary repatriation of family members can be coordinated. Maintaining family unity during repatriation is normally in the best interest of the child and should be respected. In cases where it is not possible to repatriate combatants and family members as family units, mechanisms to reunite the family upon return should be established and proper interim alternative care, preferably with extended family, should be ensured for children, consistent with their best interests. However, it is important to note that in some instances women, in particular, may have been coerced into relationships with foreign combatants, and in these cases separate arrangements for safe return and reintegration will be needed. Spouses (including of traditional marriages) and their children who are not citizens of the country to which they are travelling should be allowed by the Government concerned to enter and live in that country as a family unit with an appropriate legal residence status consistent with relevant immigration laws if that is their wish, having been informed of all available options.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "84e26289-ccbf-4487-8484-97340f0cfe0c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 31, - "Paragraph": "7.4.1 Situation analysis in return areas The successful reintegration of foreign combatants and associated persons is likely to be a key priority in wider efforts to build and sustain peace. If it is unsuccessful, some among the group may be at a high risk of recycling and recruitment in the future, both in their countries of origin and across the wider region. Prior to return, it is therefore important that assessments are made of the situation in the country of return. Planning for reintegration support should be based on a broad range of conflict-, gender- and age-sensitive assessments conducted with sufficient time to allow for careful programme design. Several key issues will need to be examined and are highlighted in Table 6; however, comprehensive guidance on assessments for reintegration can be found in IDDRS 4.30 on Reintegration and in IDDRS Level 3 modules on Structures and Processes. TABLE 7: KEY ISSUES TO CONSIDER IN AREAS OF RETURN Extensive efforts may be required to prepare the ground for the arrival of foreign combatants and associated persons and to establish new approaches to community relations and problem solving. A return to previous social structures may be unrealistic and even undesirable, especially if these played a role in conflict dynamics in the first place. Differences between groups based on political, religious, ethnic or other grounds may have impacted social cohesion and could have been further impacted or affected by conflict. Identifying key stakeholders and enlisting their support for both DDR and wider efforts to sustain peace will be extremely important. In some cases, substantial work may be required to prepare the ground for reintegration efforts and to ensure that interventions help to promote and underpin peace. See also IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ca552f61-1389-4971-8ced-5199a75c7ffe", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 33, - "Paragraph": "7.4.2 Reintegration support In addition to the sections below, IDDRS 4.30 on Reintegration may be referred to for further specific guidance. Reintegration is a process, not a single event or point in time. Its overall success is dependent on a variety of interrelated factors that include social, economic and political aspects, some of which are considered in Table 7. TABLE 8: FACTORS UNDERPINNING SOCIAL, ECONOMIC AND POLITICAL REINTEGRATION", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e8b3266b-9d23-49b4-ae89-e9b0a0407995", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 34, - "Paragraph": "8.1 Responding to the needs of children In addition to the brief specific points made below, IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR should be referred to for further specific guidance. In situations of armed conflict, children continue to be recruited and used by parties to conflict, including armed groups designated as terrorist organizations by the UN. All persons under the age of 18 who are affected by armed conflict, including children associated with armed forces or armed groups, must be considered primarily victims of human rights violations. The best interests of the child should be a primary consideration in all decisions taken about them. Issues related to the DDR of foreign CAAFAG are likely to pose specific challenges that will need attention, including from child protection specialists. Foreign CAAFAG are likely to be particularly vulnerable, and restoring links with their families and communities may prove especially challenging. Under the Convention on the Rights of the Child and its Optional Protocol on the involvement of children in armed conflict, States must provide children special protection and assistance when deprived of their family\u2019s care. States shall not discriminate against children or deprive them of their rights to protection and assistance based on their race; colour; sex; language; religion; political or other opinion; national, ethnic or social origin; property; disability; birth; or other status of the child or their parent, guardian or caregiver. Foreign CAAFAG should be repatriated as soon as possible to their country of origin, if in their best interest. However, the determination about whether to do this depends on many factors, including the security context within their country of origin and an assessment of protection issues related to their return, both for them and their wider family and community, including issues of non-refoulement. Experience suggests that organizing and facilitating return can be a complex process that requires the support of multiple stakeholders. Specific processes and agreements will need to be put in place and standard operating procedures will be needed to formalize processes between and among the different actors to help to guarantee the security, safety and well-being of each child, and to ensure that their views are considered. All repatriations must be voluntary. When required, States should support long-term reintegration options for children, and care and guardianship arrangements should be formalized in line with national child protection systems and alternative care principles, including the best interests of the child. Specialist advice should be sought and, where States lack capacity, support should be provided to help build it. Children shall not be deprived of their liberty unlawfully or arbitrarily. Children associated with armed forces and groups must not be detained solely for their association with armed forces or groups. Member States should adopt protocols for the handover of children allegedly associated with armed forces and groups to civilian child protection actors, in order to prioritize their reintegration. Member States should also end the military detention of children and adopt formal protocols for the handover of children from military custody to civilian child protection actors. If DDR practitioners become aware that children are being interned, the United Nations Children\u2019s Fund (UNICEF) shall be notified and, where there is a mission, any designated child protection adviser or focal point. If there is evidence that a child has committed an illegal act, the child shall be treated in accordance with international juvenile justice standards, which emphasize alternatives to detention and prioritize the support and social reintegration of the child. Irrespective of the circumstances of the arrest, detention or imprisonment, all efforts shall be made to end the detention of children, using it only as a measure of last resort and for the shortest appropriate period of time. Children shall not be held with adults when detained, and alternatives to detention that could contribute to children\u2019s reintegration must be prioritized. Facilities where children are deprived of liberty must be equipped with personnel who are trained in child protection and specialize in education and psychology, and access should be facilitated for child protection actors, such as the United Nations and the ICRC.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "a7a8e3ca-93e4-4fda-92e2-7a2ea4b046a8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 35, - "Paragraph": "8.2 Considerations for family members and dependants in refugee sites Foreign combatants and associated persons may be traveling with family members or other dependants. Sometimes family members may independently make their way to the host country. If the family members have entered the host country to seek asylum, they should be considered asylum seekers or refugees after and if their claim for refugee status has been considered and accepted. If foreign combatants mix with or stay near refugee populations and sites, this is likely to impact negatively on the security and other rights of refugees and host communities. Therefore, it is essential to do all that is possible to ensure that refugee sites and settlements do not become militarized, as this may lead to security problems, including military attacks. Conversely, sites established for the encampment or even internment of foreign fighters should not become settlements for those displaced from across the border. Several good practices related to refugee sites and settlements are highlighted in Table 8. TABLE 9: ISSUES TO CONSIDER REGARDING REFUGEE SITES/SETTLEMENTS AND ACCOMPANYING FAMILY MEMBERS In practice, achieving the conditions outlined in Table 8 can be very difficult and complex, particularly in situations where conflict may be ongoing and security challenging, and where the control of the host State over territory and armed groups may be tenuous. While the primary responsibility for security and dealing with these issues rests with the host State, a multi-stakeholder approach is often required to provide appropriate advice and support. Considering the increasing complexity of armed conflicts and cross-border movements, engagement with a broad network of stakeholders is more important than ever. This may include, when appropriate, all pillars of the UN (human rights, development, humanitarian, and peace and security), other international and regional organizations, other States and other relevant actors, such as the ICRC. In these circumstances good practices may include the establishment of structures such as Inter-Agency Task Forces to bring together all relevant actors under the leadership of the host State and the development of plans, including those specifically related to the maintenance of the humanitarian and civilian character of asylum and those dealing with foreign combatants. When considering the nature of technical and practical support and cooperation with host country security forces, Human Rights Due Diligence Policy guidance and principles must be followed. It is important to try to maintain family links between refugee family members housed in refugee sites and settlements and combatants who may be in internment camps or other places of detention. Family links can be maintained through family tracing, exchanges of messages and family visits to internment camps. At the same time, it is important to recognize that some relationships within an armed group, including marriage and intimate relationships, may have been forced, and the interests and wishes of those concerned need to be carefully considered. Women and girls who have been forcibly abducted and are married under circumstances not recognized by customary or national law have the right, with their children where applicable, to be safely separated from their so-called husbands (see also IDDRS 5.10 on Women, Gender and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "07dbf885-379c-4015-9276-3ad6e42eeebb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 36, - "Paragraph": "8.3 Gender considerations In addition to the sections below, IDDRS 5.10 on Women, Gender and DDR should be referred to for further guidance. It is important that the specific challenges faced by women and girls and men and boys are considered when developing the required responses. In many situations, women and girls are survivors of high levels of sexual and gender-based violence and may have been forced into relationships. When they return home, they often face high degrees of stigmatization and denial of their rights, including property and access to services and opportunities. Several specific issues need to be considered and included when planning interventions. These are outlined in Table 9. TABLE 10: SPECIFIC ISSUES TO CONSIDER RELATED TO THE NEEDS OF WOMEN AND GIRLS Dramatic changes in roles during DDR may also profoundly affect men and boys, as loss of a sense of control or purpose can be powerful feelings that, if not addressed, can lead to significant challenges in terms of loss of self-esteem and poor mental health, and may make re-recruitment, domestic violence and substance abuse much more likely for some individuals. This effect may be more pronounced among some who, in addition to leaving the group, may have to relearn and, in some senses, renegotiate roles in their families or communities. Young men who have largely grown up in an armed group might never even have lived in their \u201ccountry of origin\u201d and may find this transition particularly difficult. Specific responses to these types of challenges might include mentorship and life skills training alongside efforts to involve such individuals in broader community activities and groups as well as livelihood support.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "fbe56faf-96ef-41a5-b091-9132c36fd93b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 38, - "Paragraph": "8.4 Those who are chronically ill and with disabilities Further guidance can be found in IDDRS 5.80 on Disability-Inclusive DDR and IDDRS 5.70 on Health and DDR. Ex-combatant groups often have significant issues with poor health and disability. In the case of foreign combatants, several issues need to be taken into account during the initial support provided in the host country, during repatriation and in support of reintegration in their countries of origin. The disability and health profile of the armed group in question should be ascertained as early as possible in the planning process. It is important to know what types of disability are present and the main diseases and illnesses affecting the group, not only so that proper health care and disability support can be provided immediately, but also so that medium- and longer-term service provision and reintegration support can be planned for and safe repatriation arrangements ensured. Those returning to an area who have significant health needs and who require support in the short and longer term will have an impact on health and social services in their countries of origin, and this needs to be properly planned and catered for, both to ensure appropriate care can be provided but also to avoid potential resentment in receiving communities who may feel that existing facilities are being swamped with new arrivals. In the case of communicable disease, understanding disease profiles among groups and in return areas will help to ensure that any risks can be identified and catered for. This should include attention to issues such as HIV transmission as well as care and treatment. However, it is important to avoid stigmatizing groups who may be affected or at risk. Principles of safety, confidentiality, respect and non-discrimination are of paramount importance.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ab0440a1-6740-4f6e-977c-3870b93b8d59", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "8.5 Public information and strategic communication requirements Further guidance can be found in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. Effective communication and careful messaging are important when engaging with foreign combatants and associated persons, and with host communities in areas of origin and return. At the same time, poor communication can undermine the objectives of DDR and even, in some instances, cause security risks and harm. Information will need to be provided on a range of issues, including the DDR process and procedures and methods of presenting for DDR. In situations where the conflict is ongoing, messaging may also be used to make appeals for groups to enter into dialogue, to release children or to explain to individuals or groups their options if they decide to come forward for DDR or associated programmes. The proactive consideration and management of risk and do no harm considerations should be mainstreamed throughout the process. Public information campaigns and programme support should foster non-violent, healthy expressions of masculinities and femininities. Obtaining advice and input from stakeholders in areas of origin may prove invaluable, and key informants might include civil society organizations, journalists, local leaders and even former combatants themselves. In some situations, messaging and information campaigns of this nature have used such approaches specifically as a means of reassuring combatants of their safety when they pass through DDR and as a mechanism for engaging with communities and having dialogue on issues related to return. However, when planning to use such techniques, risks to both the individuals concerned and any persons closely associated with them must always be carefully considered. The type of delivery platform and mechanism used for messaging should be based on an assessment of what is most likely to reach the target audiences. In many settings, it is likely to include radio, leaflets, mobile phone messaging, posters and word of mouth. Message content and delivery mechanisms likely need to be dynamic and adaptable to rapidly changing contexts and needs. It is important to remember that foreign combatants and associated persons may not be able to communicate in the languages used in the host country and that personnel able to speak their language will be required.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "0b4ebddf-b6a3-426e-bbd4-290791ea802b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "8.6 Prevention of recruitment In border areas where there is a significant risk of recruitment, assessment and analysis might help to better identify and understand risks and possible preventive measures. This is best undertaken as part of broader approaches to conflict analysis that seek to explore the underlying causes of tensions and conflict and the role and motivations of stakeholders. When undertaking this type of analysis, it is important to avoid stigmatizing communities and groups and to be aware of potentially difficult or strained relationships between communities and authorities. Practical measures that might be considered following careful assessment are briefly outlined in Table 10, and further guidance can be found in IDDRS 4.30 on Reintegration. TABLE 11: PRACTICAL MEASURES THAT MAY BE CONSIDERED TO PREVENT RECRUITMENT", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "5ff433f5-6f31-401a-9d44-184d2f181956", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 40, - "Paragraph": "Annex A: Abbreviations CAAFAG\tchildren associated with armed forces or armed groups ICRC\tInternational Committee of the Red Cross IHL\tinternational humanitarian law SGBV\tsexual and gender-based violence UNHCR\tUnited Nations High Commissioner for Refugees UNICEF\tUnited Nations Children\u2019s Fund UNODC\tUnited Nations Office on Drugs and Crime", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "5c273e47-4c46-4fdc-a6a9-2595ae1ea7f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "Summary 1. Module, scope and objectives\t\t\t\t\t\t\t\t2\t 2. Terms, definitions and abbreviations\t\t\t\t\t\t\t2 3. Introduction\t\t\t\t\t\t\t\t\t\t\t3 4. Guiding principles\t\t\t\t\t\t\t\t\t\t4 4.1 Voluntary\t\t\t\t\t\t\t\t\t\t8 4.2 People-centred\t\t\t\t\t\t\t\t\t8 4.3 Accountability and transparency\t\t\t\t\t\t\t10 4.4 Nationally and locally owned\t\t\t\t\t\t\t10 4.5 Well planned\t\t\t\t\t\t\t\t\t10 4.6 Public information and community sensitization\t\t\t\t\t10 5. Legal frameworks\t\t\t\t\t\t\t\t\t\t11 5.1 International human rights law\t\t\t\t\t\t\t12 5.2 International humanitarian law obligations\t\t\t\t\t\t13 5.3 Domestic legal frameworks\t\t\t\t\t\t\t\t14 5.4 Institutional mandates, internal rules, policies and procedures\t\t\t14 5.5 Other instruments informing disability inclusion in humanitarian crises\t\t15 6. Planning for disability-inclusive DDR processes\t\t\t\t\t\t16 6.1 Disability-inclusive situational assessment \t\t\t\t\t\t\t16 6.2 Planning for the accessible design of DDR sites\t\t\t\t\t19 6.3 Gender and disability\t\t\t\t\t\t\t\t20 7. Disability-inclusive DDR programmes\t\t\t\t\t\t\t22\t 7.1 Access to information specific to disability services and support\t\t\t22 7.2 Physical layout of DDR sites\t\t\t\t\t\t\t22 7.3 WASH access\t\t\t\t\t\t\t\t\t22 7.4 Equal access to health services\t\t\t\t\t\t\t23 7.5 Reinsertion\t\t\t\t\t\t\t\t\t\t24 7.6 Reintegration\t\t\t\t\t\t\t\t\t25 8. DDR-related tools\t\t\t\t\t\t\t\t\t\t28 8.1 Community violence reduction\t\t\t\t\t\t\t28 8.2 DDR support to mediation\t\t\t\t\t\t\t\t28 8.3 Transitional weapons and ammunition management\t\t\t\t29 9. Monitoring and evaluating disability-inclusive DDR processes\t\t\t\t29 Annex A: Abbreviations\t\t\t\t\t\t\t\t\t31 Annex B: Barrier checklist\t\t\t\t\t\t\t\t\t31 Annex C: Disability and data\t\t\t\t\t\t\t\t\t33 Annex D: Disability inclusion markers\t\t\t\t\t\t\t\t36 Endnotes\t\t\t\t\t\t\t\t\t\t\t37 5.80 Disability-Inclusive DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f81e74d0-ba79-45fb-ab6f-133a1d16363d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "Summary DDR requires specific planning and interventions to eliminate barriers to participation and to address the specific needs of persons with disabilities. Disability-inclusive DDR processes shall be led by national and local authorities, in line with national and local policies and strategies, and build on existing systems and structures. A DDR process and all forms of support provided for that process shall adhere to humanitarian principles, including non-discrimination on the basis of disability and the best practices of disability inclusion in humanitarian action. Consistent with the principles of disability-inclusive humanitarian action, the inclusion of persons with disabilities in DDR shall encompass mainstreaming and targeted interventions. Armed conflict relates to disability in two respects. First, it is a cause of disability, and, second, it is a complicating factor for persons living with disability who face specific support and protection needs during conflict and its aftermath. Impairments giving rise to disability occur in direct and indirect ways in the context of conflict. Direct impairments arise as a consequence of the immediate physical and psychosocial consequences of violent conflict, such as being hit by a bullet, stepping on a land mine or being raped. Impairment also arises indirectly from conflict, and can include psychological trauma from witnessing violence, as well as a lack of basic needs (shelter, adequate clothing, sanitation, water, food, health care, etc.) and exposure to the elements. This context shall be borne in mind in the design and implementation of DDR processes. Conflict can also serve to amplify existing barriers for persons with disabilities, making it even more challenging to access the benefits of a DDR process. For example, destruction of infrastructure such as roads and the breakdown of social safety nets can result in the exclusion of persons with disabilities. Furthermore, conflict often weakens community-based organizations, and organizations of persons with disabilities (OPDs) may be particularly affected, owing to their frequently marginalized status in society. The intersectionality of disability and gender can heighten risk. Women and girls with disabilities face a double stigma, often experience abuse and social exclusion, and are financially and physically vulnerable. Additionally, women and girls are often caregivers and may take on additional caregiving roles for returning DDR participants with disabilities. Disability-inclusive DDR shall be based on a careful situational analysis of the context. This shall include an analysis of any potential disability as well as age- or gender-related barriers to participation in DDR. The capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. Protection risks that could potentially be created by this assistance shall also be assessed. For example, it is important to analyse whether DDR support to former members of armed forces and groups with disabilities may inadvertently create or exacerbate household or community tensions.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "aa9d41cc-641f-48d2-9705-a941f5d50c3c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module outlines the requirements for the planning, design and implementation of disability-inclusive DDR processes in both mission and non-mission settings. It focuses on disability inclusion as part of a DDR process for ex-combatants, persons formerly associated with armed forces and groups, dependants and community members. It also examines the different modalities through which disability-inclusive approaches and support may be provided.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "cf550380-a6af-4e6e-9418-9c8c956345a2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "2. Terms, definitions and abbreviations This section contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. The following terms and definitions are drawn from the Convention on the Rights of Persons with Disabilities, the Committee on the Rights of Persons with Disabilities, the UN Disability Strategy and UNICEF\u2019s Guidance on Including Children with Disabilities in Humanitarian Action. Accessibility means ensuring persons with disabilities have access, on an equal basis with others, to the physical environment; transportation; information and communications, including information and communications technologies and systems; and other facilities and services open or provided to the public, in both urban and rural areas. This includes the identification and elimination of obstacles and barriers to accessibility. Accessible formats refer to the provision of information in a variety of formats to make it accessible to persons with disabilities, including displays of text, Braille, tactile communication, large print, plain language, human reader, written and audio. CRPD compliant refers to policies and practices that follow the general principles and obligations set forth in the Convention on the Rights of Persons with Disabilities (CRPD) and the interpretive guidance of the CRPD Committee. Disability is an evolving concept and results from the interaction between persons with impairments and attitudinal and environmental barriers that hinder their full and effective participation in society on an equal basis with others. Discrimination on the basis of disability means any distinction, exclusion or restriction on the basis of disability that has the purpose or effect of impairing or nullifying the recognition, enjoyment or exercise, on an equal basis with others, of all human rights and fundamental freedoms in a political, economic, social, cultural, civil or any other field. It includes all forms of discrimination, including denial of reasonable accommodation. Disability-disaggregated data means data that are collected and presented separately on the basis of disability/impairment type. The availability of disability-disaggregated data (together with sex and age disaggregation) is an essential precondition for building disability-inclusive policies and interventions. Disability inclusion is an approach that aims to identify and dismantle barriers faced by persons with disabilities, support their specific requirements and ensure their full participation. It also means ensuring the meaningful participation of persons with disabilities in all their diversity, the promotion of their rights, and the consideration of disability-related perspectives in compliance with the CRPD. Disability-inclusive DDR processes are planned, implemented, monitored and evaluated in a disability-inclusive manner. Intersectionality is the interaction of multiple factors, such as disability, age and gender, which can create multiple layers of discrimination, and, depending on the context, entail greater legal, social or cultural barriers. These can further hinder a person\u2019s access to and participation in humanitarian action and, more generally, in society. Organizations of persons with disabilities (OPD) are organizations comprising a majority of persons with disabilities \u2212 at least half their membership \u2212 and governed, led and directed by persons with disabilities. Organizations of persons with disabilities should be rooted in, committed to and fully respect the principles and rights recognized in the CRPD. Persons with disabilities include those who have long-term physical, mental, intellectual or sensory impairments that in interaction with various barriers may hinder their full and effective participation in society on an equal basis with others (CRPD, art. 1). Reasonable accommodation means necessary and appropriate modification and adjustments not imposing a disproportionate or undue burden, where needed in a particular case, to ensure to persons with disabilities the enjoyment or exercise on an equal basis with others of all human rights and fundamental freedoms (CRPD, art. 2). Rehabilitation in the context of disability refers to a range of effective and appropriate measures, including through peer support, to enable persons with disabilities to attain and maintain maximum independence; full physical, mental, social and vocational ability; and full inclusion and participation in all aspects of life (CRPD, art. 26). Universal design means the design of products, environments, programmes and services to be usable by all people, to the greatest extent possible, without the need for adaptation or specialized design. Universal design shall not exclude assistive devices for particular groups of persons with disabilities, where needed (CRPD, art. 2).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ca615a7b-c9ac-4ea5-819e-e58b566b0427", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "3. Introduction Male and female persons with disabilities have unique needs and experiences. In situations of risk, they are entitled to specific care and protection, and their intersecting rights and individual circumstances shall be given due consideration. International law recognizes persons with disabilities as individuals endowed with agency and legal capacity and acknowledges the risk and differentiated impact that armed conflict and human rights abuses can have on persons with disabilities. Persons with disabilities face heightened risks and vulnerability during conflict. Inadequate attention to the needs of persons with disabilities in humanitarian operations and in DDR may result in harms. Barriers such as inaccessible shelters, lack of accessible warnings in alternate formats, barriers to evacuation, communication barriers, loss of assistive aids (for example, wheelchairs and walking canes), and challenges in obtaining long-term recovery services (for example, fistula repair or psychosocial recovery services) are some examples of how inattention to disability access inhibits participation. Research highlights the shortcomings of traditional approaches to meeting the needs of persons with disabilities that focus narrowly on specific medical and rehabilitation needs, to the exclusion of social and economic needs. It also demonstrates that separate and segregated programming for individuals with disabilities leads to isolation and disaffection. This is instructive for disability inclusion in DDR and in the broader context of post-conflict peacebuilding and development. Disability-inclusive DDR processes shall therefore not be siloed, but comprehensive and integrated. A twin-track approach is appropriate, meaning that DDR processes shall be fully inclusive of persons with disabilities and that targeted, specific interventions may also be needed to address specific needs (see Figure 1). Targeted interventions may include empowering and supporting persons with disabilities to participate in a DDR process or providing assistive technologies (such as mobility or hearing aids). Applied to DDR, this means that persons with disabilities must be able to access a DDR process on an equitable basis with other participants. The planning, design, implementation and evaluation of a DDR process shall reflect this objective. However, mainstreaming alone is insufficient to ensure that no one is left behind. Therefore, a DDR process shall also, where necessary, address the individual and collective requirements of DDR participants and beneficiaries with disabilities by providing targeted interventions. While this may include programmes to address specific requirements, what the twin-track approach does not do is support separate or segregated programming. Rather, a DDR process shall aim for disability inclusion within an integrated DDR process. FIGURE 1: TWIN-TRACK APPROACH \u2013 EXAMPLES IN THE DDR CONTEXT Many potential DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. These individuals are likely to have been exposed to trauma. It is therefore important for DDR practitioners to understand and be trained to respond to the specific needs of persons with disabilities and their families. The heterogeneity of disability means that former members of armed forces and groups with disabilities will have differing needs and face different kinds of barriers to participation in DDR. For example, former members of armed forces and groups with disabilities who find themselves restricted in their mobility may not be able to call attention to their specific requirements in DDR processes. DDR planning must also account for the reality that former members of armed forces and groups with disabilities may face physical and communication barriers in accessing information about the potential support offered through a DDR process. In addition, the self-demobilization of ex-combatants with disabilities, a common phenomenon, means that they may be difficult to identify and thus be excluded from benefits unless specific measures are taken to identify and include them. Association with an armed group combined with disability results in intersectional stigma and disadvantage, including for women and girls. Emerging research demonstrates that females with ex-combatant status are far less likely to have ties with the disability community or to embrace a disability identity that might facilitate outreach to OPDs for support. Women with disabilities, including female ex-combatants and women and girls associated with armed forces and groups, are also at greater risk of sexual violence due to the insecurity brought about by armed conflict. Survivors of sexual violence (both male and female) are at risk of psychosocial disability, vulnerability to HIV and other sexually transmitted diseases, and physical disability owing to violence, including the need for fistula surgery. While it is sometimes assumed that persons with disabilities do not require access to sexual and reproductive health services, including HIV and AIDS services, this is a falsehood. Former members of armed forces and groups with disabilities experience multidimensional discrimination in making a successful transition back into society in ways that are both similar to and distinct from their counterparts without disabilities. Discrimination on account of disability works in combination with other status attributes based on association with, for instance, a particular fighting force, gender, poverty, ethnicity, age and so forth. The well-documented barriers that persons with disabilities experience during peacetime in accessing education, employment, health and rehabilitation, and an adequate standard of living are exacerbated for former members of armed forces and groups with disabilities. These individuals confront re-entry into a fragile society with weak institutions and infrastructure and, all too frequently, an under-developed disability law and policy environment. Understanding DDR through a disability lens facilitates the identification of barriers to participation and the possibilities for dismantling them to create an inclusive process. For some examples of these barriers, see Table 1. For a checklist of steps that may be taken to remove these barriers, see Annex B. TABLE 1. BARRIERS TO DISABILITY-INCLUSIVE DDR Making DDR efforts responsive to the needs of persons with disabilities presents some challenges, and yet recognition should be given to the problem-solving skills, resilience and coping strategies of these individuals and the role that peer support can and should play in facilitating their reintegration into society. Provided persons with disabilities are afforded opportunities to participate in DDR, they can and should emerge as leaders in their communities. Former members of armed forces and groups with disabilities should be given meaningful roles in the post-conflict period and recognized as having a stake in the post-conflict social order and development efforts.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "badfa765-a612-40a1-937b-1b80269a4515", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the inclusion of persons with disabilities during DDR processes.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ec11a83b-46a6-44c7-b357-5784c3bb9b8d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.1 Criteria for participation/eligibility DDR practitioners shall ensure that they do not exclude or discriminate against persons with disabilities. Persons with disabilities shall obtain meaningful access to DDR services, programmes, aid and benefits on an equal basis with other persons. No group is to be given special status or treatment within a particular DDR process, and individuals shall not be discriminated against on the basis of disability, gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. This is particularly important when establishing eligibility criteria. All members of armed forces and groups \u2014 male, female, and persons with or without disabilities \u2014 shall be equally able to access clear information about their eligibility for DDR, as well as the benefits available to them and how to obtain them. Eligibility criteria shall be clearly provided and persons with disabilities shall understand what they can expect regarding the accessibility of facilities and services.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "0749b935-4415-41a8-927b-4b1b5932ce5e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.2 Unconditional release and protection of children Actions shall be taken to identify and dismantle barriers to entry to DDR processes for children associated with armed forces and groups with disabilities. These children will be at heightened risk of community exclusion and family separation. Support shall include referral to ongoing community-based support and disability- and age-appropriate services (for example, community-based rehabilitation and inclusive education) to help ensure that reintegrated children with disabilities can stay with their families and participate fully in the community. DDR practitioners shall be aware that, in all actions concerning children with disabilities (irrespective of former association with armed forces or groups), the best interests of the child shall be a primary consideration (see IDDRS 5.20 on Children and DDR). Where possible, DDR practitioners shall also provide support to the caregivers and family members of children with disabilities who were formerly associated with armed forces and groups both during and after the family reunification process.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "e06d129a-e056-4de4-adc1-a98f98187d5a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.3 Gender responsive and inclusive DDR practitioners shall (i) identify potential barriers to participation in all phases of DDR and (ii) take proactive, specific measures to eliminate barriers and facilitate access and inclusion. DDR participants and beneficiaries with disabilities shall have access to the same facilities and services as others. Separate or segregated programming runs counter to the principle of inclusion, reinforces stigma and is isolating. DDR practitioners shall understand the stigmatization and discrimination associated with disability in a given context and approach the design of DDR processes from a perspective that situates disability not as a medical or rehabilitation challenge or pathology but instead as a societal issue and a human rights issue according to which attitudes, the physical environment, communication and information, and legal arrangements all work in combination. As with addressing the inclusion of other specific needs groups in DDR processes, DDR practitioners shall plan, design and implement DDR processes responsive to the many different needs, experiences and disadvantages of persons with disabilities. Needs will vary not only based on the particular experience of disability, but also by age, gender, ethnicity, location, migration status, social class, household size, education and training levels, and health status. DDR practitioners shall be aware that women and girls with disabilities are often subject to multiple layers of discrimination due to their gender, disability and status as former members of armed groups (see section 6.3).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "8de8737b-6fc0-4697-8a21-993d9ae3c5a5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.3 Accountability and transparency During the planning, design, implementation and evaluation of a DDR process, DDR participants and beneficiaries with disabilities shall be consulted and participate in key decisions that affect their well-being. Persons with disabilities shall be recognized and respected as experts in relation to their needs and engaged at all stages of the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5b45d29d-6a1b-42f9-8a98-a82fa8d95254", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.4 Nationally and locally owned Successful disability inclusion is a long-term process going beyond DDR. It requires leadership from national and local authorities and shall be undertaken in accordance with national and local policies and strategies, building on existing systems and structures. Therefore, disability-inclusive DDR processes shall, as early as possible, establish links to existing national and local policies and strategies on disability, work to strengthen them and create linkages with broader peacebuilding and recovery efforts for disability inclusion. If such policies and strategies do not already exist, DDR processes may trigger their establishment. Persons with disabilities in the local community shall be consulted and engaged in planning from the start. The capacities of local communities and local actors shall also be strengthened in order for initiatives to be sustainable. Planning shall seek to build on existing national and local capacity rather than create new externally led programmes or structures. The capacity of existing rehabilitation centres and services facilities shall be augmented rather than parallel facilities being set up only for former members of armed forces and groups with disabilities. This approach also assists in building referral systems and social support groups for former members of armed forces and groups with disabilities who may need follow-up services.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "837e4a0d-3867-414d-8350-4a7e34375262", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.5 Well planned Members of the local disability community and former members of armed forces and groups with disabilities shall be encouraged to contribute to the planning and implementation of DDR processes. DDR practitioners shall ensure that the planning and design of DDR processes facilitates equal access to DDR sites, procedures, services and support, with the provision of individual support as needed. The principles of accessibility and universal design shall be addressed in DDR planning, design, implementation and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2cb8c4a4-7bf4-46e5-ab9a-8faa4369c37b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.6 Public information and community sensitization Where appropriate, DDR practitioners shall support broad gender-responsive community sensitization programming to raise awareness and address stigma regarding persons with disabilities. DDR practitioners shall also work with state and local leaders, civil society representatives and media to portray persons with disabilities in ways that counter stigmatization, marginalization and stereotyping. The communities to which former members of armed forces and groups will return, including OPDs in these communities, shall be offered information and awareness-raising sessions to help them understand the DDR process. More broadly, public information and strategic communication on DDR shall be provided in various formats to ensure the widest possible access for persons with disabilities (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). This information should encourage former members of armed forces and groups with disabilities to participate. Moreover, positive images and voices of persons with disabilities shall be reflected in such campaigns.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e9c9fa67-7e35-4f1c-8095-cb9d4d2d1793", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 10, - "Paragraph": "5. Legal frameworks DDR processes are undertaken within the context of the international legal framework of rights and obligations (see IDDRS 2.11 on The Legal Framework for UN DDR). These rights and frameworks are relevant to the implementation of disability-inclusive DDR. This includes, in particular, international human rights law, international humanitarian law, international criminal law, international refugee law, and international counter-terrorism and arms control frameworks. UN-supported DDR processes shall be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected. DDR practitioners shall be aware of the international conventions that the Member State in which they operate has signed and ratified specifically related to persons with disabilities. The discussion that follows summarizes the primary authorizing environment for approaching disability inclusion in a DDR context. The list is not exhaustive but takes into account the law and policy instruments that have been adopted since 2006. The chart below identifies the primary legal framework for advancing disability-inclusive DDR and is followed by a more detailed discussion of the legal instruments that are especially important for disability inclusion. Thereafter, additional policy frameworks are reviewed. FIGURE 2: LEGAL FRAMEWORK", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "90d91e60-8e66-4f29-a46d-727440d3d987", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 11, - "Paragraph": "5.1 International human rights law Consistent with Article 55 of the UN Charter, UN DDR practitioners have a duty, in carrying out their work, to promote and respect the human rights of all DDR participants and beneficiaries. These international human rights obligations are elaborated in the core human rights conventions, all of which apply to persons with disabilities. Of particular importance for disability-inclusive DDR are the obligations set out in the CRPD.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f16367c1-8ea2-41f2-aa28-4054c943972d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.1.1 Convention on the Rights of Persons with Disabilities The CRPD, adopted in 2006 and now nearing universal ratification, reflects current international law on the protection of persons with disabilities and the prevailing conceptualization of disability. Moreover, it integrates within its frame the protection regime extant in international humanitarian law through its provision on the protection of persons with disabilities in situations of risk. Article 11 of the CRPD requires positive measures of protection and safety for persons with disabilities affected by situations of risk, including natural disasters, armed conflicts and other emergencies. These persons include combatants and others disabled as a consequence of armed conflict. The necessity of such protection is recognized overtly in the CRPD\u2019s preamble, which affirms that \u201cthe observance of applicable human rights instruments [is] indispensable for the full protection of persons with disabilities, in particular during armed conflicts and foreign occupation\u201d. Notably, the adoption of the CRPD created a mandate for the United Nations and triggered the adoption of a UN-wide Disability Inclusion Strategy (see section 5.4) that commits to an approach to disability inclusion that is rights-based and informed by a social model. Furthermore, article 32 of the CRPD sets out obligations to ensure that international development programmes \u2013 whatever the sector of development in question \u2013 are inclusive of persons with disabilities, both as beneficiaries of development and as participants in processes of development.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "748d7bed-3220-4e29-90e9-afb0c052db76", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 11, - "Paragraph": "5.1.2 Convention on the Rights of the Child Article 23 of the Convention on the Rights of the Child (CRC) recognizes that a mentally or physically disabled child should enjoy a full and decent life, in conditions that ensure dignity, promote self-reliance and facilitate the child\u2019s active participation in the community. The CRC recognizes the right of a disabled child to special care and encourages the extension of assistance to the eligible child and those responsible for his or her care. Assistance shall be designed to ensure that the disabled child has effective access to and receives education, training, health-care services, rehabilitation services, preparation for employment and recreation opportunities in a manner conducive to the child\u2019s achieving the fullest possible social integration and individual development, including his or her cultural and spiritual development (CRC, art. 23, para. 3).", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "facab657-d20f-4e8d-91f8-6adfcc1e48f9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 12, - "Paragraph": "5.2 International humanitarian law obligations International humanitarian law seeks both to limit the effects of armed conflict, principally through protecting persons who are not or are no longer participating in hostilities, and to regulate the means and methods of warfare. The Geneva Conventions (1949) and the two Additional Protocols (1977) provide protections to persons who are in need of specific protection, including civilians or combatants who have been injured as a result of conflict as well as civilians with disabilities. International humanitarian law thus sets out positive measures for persons with disabilities that must be undertaken to ensure that they effectively access services on an equal basis with others. These include, among others, measures such as the adaptation of infrastructure and information on available vital services relating to water, food, sanitation, shelter, health care and rehabilitation, the facilitation of support to transport food and non-food relief items, the continued provision of specific services required by persons with disabilities, or assistance to victims of the use of certain weapons in armed conflicts. The Mine Ban Treaty in Article 6(3) creates an obligation for the socioeconomic reintegration of landmine survivors and, more expansively, the Cluster Munitions Convention, rooted in obligations under international humanitarian law and the CRPD, sets out implementation measures including disability and sex-disaggregated data collection, the adoption and implementation of national laws and policies, the development of national plans and budgets, and the requirement to ensure the effective participation of cluster munition victims and their representative organizations. These protection measures have clear application to the DDR context.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "78c2083d-8328-4eb6-9bf8-c0a98f9ebd15", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.3 Domestic legal frameworks Domestic legal frameworks are an important element of protection and rights recognition for persons with disabilities. National law sometimes addresses the rights of former members of armed forces and groups with disabilities. Increasingly, countries are adopting comprehensive legislation and national action plans specifically for those with disabilities. Other sources of rights for persons with disabilities are found widely dispersed across the legal system (e.g., election laws, social protection laws, education, health). Legal reform often accompanies the transition period following conflict, presenting an opportunity to harmonize disability legislation with international legal obligations. The review of the disability law framework likewise presents an important opportunity to ensure consistency in disability rights protection and to avoid differential protections between former members of armed forces and groups with disabilities, on the one hand, and persons with disabilities not affiliated with armed forces or groups, on the other. The following issues would usually be addressed in a Member State\u2019s domestic legislation and may have relevance to disability-inclusion in a DDR process: Anti-discrimination legislation and the prohibition of discrimination on the basis of disability, together with the duty to provide reasonable accommodation; Obligations relating to the accessibility of the physical environment; transportation; information and communications, including information and communications technologies and systems; and other facilities and services open or provided to the public, both in urban and in rural areas; Legal recognition before the law; Protection of the privacy of personal, health and rehabilitation information of persons with disabilities; Right to live independently and in the community; Access to justice and measures of support to guarantee access for persons with disabilities, including the provision of procedural and age-appropriate accommodation, in order to facilitate their effective role as participants and beneficiaries, including as witnesses, in all legal proceedings, including at investigative and other preliminary stages.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ec0588c2-ddf7-4115-966c-24e5f4715ff9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.4 Institutional mandates, internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures, some of which directly address disability inclusion and the rights of persons with disabilities. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: Security Council resolution 2475 (2019). This resolution draws attention to the disproportionate impact of armed conflict on persons with disabilities. It also recognizes the importance of taking into account the discrete needs of persons with disabilities. The resolution has three main objectives: first, to raise awareness of the need to involve persons with disabilities in conflict prevention processes, reconstruction and post-conflict reconciliation; second, to underline the significance of a broadening knowledge of the needs and rights of persons with disabilities in peacekeeping missions; and third, to improve the reporting system on conditions experienced by persons with disabilities. UN Disability Inclusion Strategy. The UN has initiated a system-wide effort and accompanying policies to become more inclusive of persons with disabilities. In March 2019, it adopted the UN Disability Inclusion Strategy, according to which UN entities, country teams and humanitarian country teams will measure and track their performance with respect to disability inclusion. The Inter-Agency Standing Committee (IASC) Guidelines on Inclusion of Persons with Disabilities in Humanitarian Action (2019). These provide detailed operationally oriented guidance in the broader humanitarian action context, much of which is directly applicable to DDR. This and other efforts, such as the adoption of the World Charter on Disability Inclusion in Humanitarian Action, provide evidence of disability-inclusive agenda setting by humanitarian actors. The IASC Guidelines for Mental Health and Psychosocial Support in Emergency Settings (MHPSS) (2007). These recognize that during humanitarian crises, many factors (e.g., violence, uncertainty, loss of family members, loss of home) can negatively affect the mental health and psychosocial well-being of individuals, families and communities, and that persons with disabilities are often disproportionately affected. The MHPSS is therefore important to integrate into DDR to improve the mental health and psychosocial well-being of all DDR participants and beneficiaries, including those with physical, sensory, psychosocial or intellectual disabilities (for more, see IDDRS 5.60 on Health and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "029b8056-e2f1-46a8-a770-d64aa45ae844", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "5.5 Other instruments informing disability inclusion in humanitarian crises Sustainable Development Goals. The 2030 Agenda for Sustainable Development pledges to \u201cleave no one behind\u201d. Its plan of action is directed towards a peaceful and prosperous world, where dignity of an individual person and equality among all is applied as the fundamental principle, cutting across three dimensions of the UN\u2019s work, namely, (1) development; (2) human rights; and (3) peace and security. Sendai Framework for Disaster Risk Reduction 2015\u20132030. The guiding principles of this framework state that disability should be included in all disaster risk mitigation policies and practices.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e0b3a4a7-6fd3-4dc3-ad08-4b493171555c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "6. Planning for disability-inclusive DDR processes Disability-inclusive DDR begins at the earliest stage possible, during the context of peace negotiations (if these exist) and considering the specific requirements of persons with disabilities. DDR practitioners should therefore facilitate meetings with OPDs, former members of armed forces and groups with disabilities, leaders in the disability community, and other key constituents. DDR practitioners should hold consultations with disability organizations during the planning and pre-deployment phase and ensure that the voices of former members of armed forces and groups with disabilities are heard. This will help facilitate linkages with persons from the wider disability community. For an approach to disability inclusion in DDR, see Figure 3. FIGURE 3: APPROACHES TO DISABILITY-INCLUSIVE DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d19a68b2-608e-4ad9-882c-90d6be377ab1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "6.1 Disability-inclusive situational assessment During the DDR planning process, a broad situational analysis should be conducted. At a minimum, this analysis should gather information on local perceptions, disability prevalence, local capacities, intersectional discrimination and accessibility. A disability-inclusive situational analysis should lead to the inclusion of explicit measures in the programme/project design that: Avoid perpetuating or reinforcing inequalities based on disability; Take a \u2018do no harm\u2019 approach that includes the provision of reasonable accommodation for an individual with a disability, where needed; Overcome barriers to the full participation of persons with disabilities in a DDR process; Ensure that women, men, girls and boys with disabilities benefit equitably from a DDR process and its results; Incorporate specific activities to address disability-based inequalities and constraints, and meet disability-specific needs and priorities; and Use disability and gender-specific and/or sex-disaggregated indicators, including impact indicators, to monitor and evaluate progress and results. The box below provides a summary of some basic requirements when planning disability-inclusive DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "bd7c26d3-af22-4788-b25e-8711beef1ec1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "6.1.1 Knowledge and attitudes Understanding local perceptions is important given the stigmatization of disability prevalent in many societies. This takes many forms and sometimes includes stigmatization rooted in false notions about the cause of disability (e.g., curse, witchcraft). Consultations to assess the views of local communities towards returning former members of armed forces and groups with disabilities should begin as early as possible to enhance local capacity and create an enabling environment for the reintegration of former members of armed forces and groups. Qualitative data can be obtained through key informant interviews and focus group discussions that, first and foremost, include persons with disabilities affected by armed conflict, as well as ex-combatants and persons formerly associated with armed forces and groups. It should also include the family members of former members of armed forces and groups, disability community leaders, health and community workers, religious leaders, women and youth groups, government officials and nongovernmental organizations/community-based organizations. During these consultations, support should be provided to ensure that persons with different types of disabilities, including sensory, psychosocial or intellectual disabilities, can fully participate.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b7998ace-b9b3-45b6-a8a9-b8c11db0a05b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 16, - "Paragraph": "6.1.2 Disability data It is often the case that little reliable data exists on disability, although some progress has been made globally since 2006. While there may be little reliable data about disability, and in particular about persons with disabilities affected by armed conflict, planning assessments should consider available data, including from surveys undertaken by humanitarian organizations, especially those with disability-specific programming. National census data can provide some insights into prevalence rates, although, again, this data may be highly unreliable. Sometimes disability data may be contained in demographic and health surveys that are regularly carried out in many countries, although these may have been interrupted because of the conflict or may not use recognized approaches to identifying persons with disabilities. DDR planning shall aim to capture disability data in all aspects of DDR. See Annex C for more detailed guidance and resources on disability and data.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "64607e35-131d-45bd-a7a0-959d17696773", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "6.1.3 Identify existing capacities When DDR sites are established (such as reception centres, disarmament and/or demobilization sites, military barracks, etc.), existing capacities in the surrounding area shall be assessed. As a general rule, the area around a DDR site must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc. The availability and accessibility of basic sanitary facilities shall be considered, as shall the possibility of health and rehabilitation referrals in the surrounding area. Locations and routes for medical and obstetric emergency referral must be pre-identified, and there should be sufficient capacity for referral or medical evacuation to cope with any emergencies that may arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider) (see IDDRS 4.20 on Demobilization). Planning should also take into careful consideration the potential rehabilitation needs of former members of armed forces and groups with disabilities and plan for the provision of assistive devices (e.g., crutches, wheelchairs, walking sticks) and for linking and referrals to community support. Such needs shall be budgeted for during planning (see Annex D for guidance on how to conduct a disability-inclusive budget scan). OPDs as well as existing facilities and programmes that provide services to persons with disabilities should form part of the initial assessment, as they can provide support to DDR participants and beneficiaries. Identification of the local capacities of OPDs and organizations that provide services to persons with disabilities and working in collaboration with them is important, especially to ensure that former members of armed forces and groups with disabilities who have self-demobilized can be identified and included in DDR and to help strengthen existing capacity that may have been seriously undermined during the armed conflict. Transport planning is also an important dimension of effectively accommodating former members of armed forces and groups with disabilities in the DDR process, as individuals with disabilities in may require accessible forms of transport. In addition to examining capacities in and around DDR sites, the existing capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. This assessment should map existing health-care and rehabilitation facilities in and around communities where former members of armed forces and groups are likely to return. This should include a mapping of social protection programmes, including safety nets, programmes to support access to employment, skills development, and access to assistive technology. This exercise should ascertain whether the country has a functioning national disability strategy and programme, and the extent that ministries are engaged (this should go beyond a ministry of labour and social affairs or a ministry of health, to include other key ministries such as education and planning and development, among others).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ac00b2ea-5a11-497d-9d74-c605b5541940", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 17, - "Paragraph": "6.2 Planning for the accessible design of DDR sites Planning assessments and recommendations for personnel and budgetary allocation for inclusive DDR shall make provisions for disability expertise and accessibility for DDR sites (e.g., removal of physical barriers, ensuring safe and accessible WASH facilities, appropriate preparation to receive individuals with sensory disabilities). The accessible design of DDR sites will ensure that former members of armed forces and groups with physical and sensory disabilities are included and make it more likely that they will participate. International humanitarian standards shall apply and gender-specific requirements shall be taken into account (e.g., security, sexual and gender-based violence prevention measures, the provision of disability-inclusive and female-specific health-care assistance and support). Engagement with persons with disabilities and OPDs in the design, construction and modification of site infrastructure for accessibility is a strategy promoted in disability-inclusive humanitarian action and should be considered. Persons with disabilities should be reasonably accommodated, meaning that necessary and appropriate modifications and adjustments are applied to meet the requirements of the individual in question (for some examples, see Box 4). In all instances, reasonable accommodation is intended to ensure that persons with disabilities are able to enjoy or exercise on an equal basis with others all human rights. The duty to provide reasonable accommodation is thus a requirement of the obligation not to discriminate on the basis of disability and applies to all aspects of DDR. Research underscores that reasonable accommodation is typically at no or low cost. Engaging the local disability community or volunteers from among former members of armed forces and groups to provide support is an option that may be considered. Sites must take into account the need for capacity to address the specific requirements of former members of armed forces and groups with disabilities. Information on DDR should be made available in multiple and accessible formants, and registration processes should account for the accessibility of persons with disabilities, including having protocols for the provision of reasonable accommodation. Possible options include the establishment of disability focal points in each region and the secondment of experts, including those from OPDs, the national disability programme (if one exists) or an umbrella association of OPDs. DDR participants with disabilities should be briefed on community-based support and disability services, so it is essential that all personnel are trained in disability awareness strategies and are fully aware of available facilities and services.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "4b34101d-0144-440a-80f2-4abf7eff0903", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 18, - "Paragraph": "6.3 Gender and disability Planning for DDR processes shall take into account the intersection of age, gender, disability and other forms of diversity. DDR practitioners shall also be aware of the different ways in which these categories intersect, and the differing impacts that such intersectionality may have on former members of armed forces and groups with disabilities. Although male and female former members of armed forces and groups with disabilities may both experience social marginalization, women and girls often face unique forms of stigma and are more vulnerable to abuse. Limited access to viable economic opportunities may leave persons with disability more financially (and physically) at risk than they were as part of armed forces and groups, which may leave women and girls facing unique protection risks. Gender norms in the community may also be more traditional than in armed forces and groups, leading to losses in gender equality for women and girls. For example, community members may expect female combatants to return to traditional gender roles in the domestic sphere, even if they held leadership roles in their armed force or group. Female combatants with disabilities may find this readjustment particularly difficult, especially if they are locally perceived as unable to fulfil the role of a wife and mother due to their disability. Adolescent girls may also be excluded from decision-making due to their previous association with an armed force or group, because of discrimination on the basis of disability and gender norms, or because of a lack of accessibility measures. Therefore, when designing programmes, planners shall consult with male and female persons with disabilities as well as community members, including those belonging to OPDs and women\u2019s and youth groups. Planning and programme design should also be based on assessments that are gender responsive. Safety and dignity shall be prioritized, and any unintended negative effects of DDR processes shall be minimized. Special attention shall be paid to ensure that female DDR participants and beneficiaries, including those with disabilities, are able to access assistance and services in proportion to need and without barriers or protection risks. Mechanisms should be established through which DDR participants and beneficiaries can express concerns and make complaints. Monitoring and evaluation shall include protection dimensions and take decisive action to address issues identified.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "fc77c2c2-8bbb-484e-b358-a250206a24cd", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 20, - "Paragraph": "7. Disability-inclusive DDR programmes DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7557eb47-5727-4eff-af03-4768aacf610f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "7.1 Access to information specific to disability services and support Upon entry to a DDR programme, all DDR participants should be made aware of their rights and, in particular, any specific rights related to disability. They should also be provided with access to information specific to disability services and support, such as rehabilitation services, the provision of assistive devices, and peer support. The approach taken to providing disability-specific support to DDR participants should be informed by existing principles of rehabilitation.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "8408dd09-dfb5-4cd2-823c-58cfde690926", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "7.2 Physical layout of DDR sites The physical layout of DDR sites should allow for DDR participants with disabilities to participate in all aspects of the DDR programme, from reception (if applicable) to disarmament and demobilization. Universal design and accessibility should be at the forefront of layout planning. While males and females shall be provided separate facilities, in part to ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, persons shall not be separated based on disability. Furthermore, space should be available for persons with disabilities who have caregivers required for personal assistance, or who require assistive devices and technology.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b2cbe385-cf25-4fce-ad5f-9b78ae36615b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 20, - "Paragraph": "7.3 WASH access Water, sanitation and hygiene (WASH) play a key role in ensuring the well-being of people, including persons with disabilities and their families, who may need to access extra quantities of water as well as extra or specific hygiene-related items, and require reliable access to water and sanitation infrastructures. Persons with disabilities are often confronted with non-accessible facilities that they find difficult to negotiate, and they may face stigma and discrimination when using WASH facilities. This can seriously impact the health and dignity of DDR participants with disabilities. The gendered dimension of accessible WASH is also essential to consider, as women and girls report considerable anxiety about safety and security in this context. The additional challenge of menstrual hygiene management for women and girls with disabilities should be factored into WASH accessibility, including the need for adaptive and accessible menstrual health products. Suggested measures to address accessible WASH in a DDR process include the following: Engage OPDs in planning for access to safe water and sanitation to persons with disabilities. In low-resource settings, civil society organizations often play a critical role in supporting government efforts in WASH. Invest in and allocate financial resources/budget for accessible WASH in DDR sites. Partner with organizations that provide accessible WASH in communities, households and settings outside the home, prioritizing schools, workplaces, health facilities and communal WASH facilities. Partner with organizations that provide\u00a0safe, accessible and affordable\u00a0menstrual hygiene items, such as\u00a0underwear with built-in\u00a0menstrual\u00a0protection. Adopt a twin-track approach: mainstream disability in DDR WASH policy and develop disability-specific WASH measures.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2f820690-41f7-40d3-82e3-ecfb716b1106", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 21, - "Paragraph": "7.4 Equal access to health services During demobilization, individuals should be directed to a doctor or medical team for physical and psychosocial health screening (see IDDRS 4.20 on Demobilization). The specific needs of former members of armed forces and groups with disabilities should be assessed, and DDR practitioners should support these individuals to access the assistance they need throughout demobilization and the subsequent reintegration stage of the DDR programme. This can be done, for example, by referring individuals to health facilities identified during previous assessments (see section 6.1.3). Residential demobilization sites (such as cantonment sites) should provide birthing kits, sufficient clean water, supplemental feeding and medical facilities. Women and girls with disabilities who have been abducted and/or suffered sexual assault during and after the conflict should be assisted by women who are trained in trauma management and offered counselling services appropriate to the cultural context. They must also be included in HIV and AIDS programming in DDR. Research demonstrates that men and women with disabilities are often assumed to be non-sexual and to have no need for HIV and AIDS services, which is wholly without basis in fact. Persons with disabilities, especially girls, are also at heightened risk of sexual abuse and assault. Persons with disabilities must be able to access all health facilities, including temporary ones. When health facilities are rebuilt or rehabilitated, they should be fully accessible to persons with disabilities, including elements such as entrances, restrooms, ease of movement within buildings, and signage. Also relevant for DDR programming is the promotion of initiatives to transport persons with disabilities to health facilities and to ensure that entrances are wide enough, signage is clear and pathways facilitate movement. Information on all health services should be provided in multiple accessible formats, taking into account the requirements of former members of armed forces and groups with disabilities who have hearing, visual, intellectual or psychosocial disabilities. For specific guidance on persons with disabilities, mental health and psychosocial support, refer to IDDRS 5.70 on Health and DDR.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "625e1e56-00ee-467a-9e34-462eac2d02ec", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 21, - "Paragraph": "7.5 Reinsertion As part of a DDR programme, transitional reinsertion assistance may entail the provision of cash payments, vouchers and/or in-kind support, or the participation of former members of armed forces and groups in public works programmes (see IDDRS 4.20 on Demobilization). Irrespective of the type of reinsertion assistance provided, DDR practitioners should take the specific needs of those with disabilities into account. Food assistance should, for example, cater to the specific nutritional needs of persons with disabilities (see IDDRS 5.50 on Food Assistance in DDR). More generally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. When considering the provision of transitional reinsertion assistance, DDR practitioners should: Plan for extra costs associated with transitional reinsertion assistance for persons with disabilities (e.g., assistive devices, transport, specific nutritional needs, community-based services); Ensure that, where possible, reinsertion kits are universal in their design (i.e., that they can be used by persons with disabilities without additional modifications); Ensure accessibility, for example, of pick-up points for cash payments, vouchers and/or in-kind assistance; Be aware of any safety or protection concerns that may impact transitional assistance or require extra costs, particularly for women and girls with disabilities if travelling to pick-up points for reinsertion assistance (e.g., ensuring safe transport and providing for extra costs as needed); Ensure that, when voucher systems are used, they allow persons with disabilities to cater to their specific needs in terms of nutrition, accommodation, etc., and are viable for them to utilize (e.g., accounting for distance and accessibility to locations where they can use vouchers, as well as any additional transportation costs incurred); Include persons with disabilities in public works programmes where possible, planning for any extra costs needed to enable them to effectively do their jobs, and provide alternative roles or reinsertion/reintegration support only when an individual is unable to do the work required; Ensure, where possible, that education and training efforts provide support for participants with disabilities, and account for any additional costs this may require. Failure to ensure that transitional reinsertion assistance meets the needs of former members of armed forces and groups with disabilities will compromise their reintegration and could be a potential source of conflict or care burden within their communities and family. Research shows that caregiving responsibilities for former members of armed forces and groups with disabilities fall disproportionately on women and girls. DDR practitioners should also ensure that former members of armed forces and groups with disabilities have accessible means of transport to the area where they will receive reinsertion and/or reintegration support. Ensuring a safe means of transport that does not subject women (including women with disabilities) to sexual violence or trafficking is essential.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "44f98afa-985c-4342-8ecd-8f64197456f6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 22, - "Paragraph": "7.6 Reintegration DDR practitioners shall plan for and allocate resources for disability inclusion in reintegration activities, both when these activities are implemented as part of a DDR programme and when they are implemented during ongoing conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). These activities shall, as far as possible, be inclusive, and mainstream initiatives where persons with disabilities are able to participate in the same kinds of economic, social and political initiatives as their non-disabled counterparts. Where possible, community-based rehabilitation approaches should be sought to ensure the inclusion of those with disabilities (see Box 7). Disability-specific (targeted) initiatives may be appropriate but should not take the place of inclusive programming. Barriers to full participation in social, economic and political reintegration shall be identified and addressed. Economic reintegration Economic inclusion for individuals with disabilities shall be accounted for in DDR planning and design. DDR practitioners shall not make decisions on the basis of assumptions about what DDR participants with disabilities can and cannot do and shall not foster exclusion from livelihood activities. DDR processes shall not discriminate on the basis of disability and shall observe the duty to provide reasonable accommodation where needed. Accessibility measures to foster economic inclusion and equality of opportunity shall be put in place (for example, physical, transport, communication and information). Specific measures must be implemented to ensure that former members of armed forces and groups with disabilities have access to the same kind of reintegration opportunities provided to other DDR participants and beneficiaries. Like their non-disabled counterparts, they should have a voice in their choice of training and livelihoods activities and should not be segregated into initiatives that put them on the fringes of the economy. Participation in the open labour market should be the goal for all adult former members of armed forces and groups, including those with disabilities. Considering that many conflict-prone countries are agriculture-based economies, the facilitation of a return to farming or fishing can be key to successful reintegration and to the transition from subsistence farming to more sustainable livelihoods. Interventions to support smallholder farmers and marginal fishers are needed, as these groups constitute the largest segments of the workforce in current conflict zones. The capacity of these agricultural workers to jump-start their livelihoods could be greatly enhanced by providing them with an understanding of how markets work, facilitating their access to improved production systems and making their farms more resilient. Examples of disability-inclusive approaches for economic reintegration include the following: Implement strategies to counter negative attitudes and discrimination against persons with disabilities, particularly regarding their ability to participate in training and economic activity. Sensitize family and community members to the rights and capacities of persons with disabilities, including their right and capacity to work. Mainstream protection and safeguarding measures across livelihood and economic inclusion programming. Inform persons with disabilities about these measures and how they can access them. Recognize the gendered dimension of some protection and safeguarding risks. Assess and ensure the accessibility of skills training, apprenticeships and financial service providers, and markets and market-related information for persons with different types of disability. Assist vocational or business skills training providers to make the courses they offer accessible to persons with different types of disability. Ensure that trainers are aware of how to train individuals with certain types of impairment. Provide (or provide referrals to) technical aids and assistive devices where necessary, such as crutches, white canes and hearing aids. Adapt equipment or communication methods, for example, Braille and sign-language interpretation. Encourage training and apprenticeship providers, potential employers, and business development and financial service providers to respect the rights of persons with disabilities, including their right to have full access to livelihoods, and prevent stigmatization. Support engagement with local communities, including OPDs, to identify barriers and employment opportunities for reintegrating former members of armed forces and groups with disabilities. Develop outreach and community-based processes that can identify and connect with persons with disabilities who are not visible, for example, the self-demobilized. Social reintegration Families and social networks can remove or reduce barriers that hinder the social reintegration of persons with disabilities. Supportive families can promote inclusion, particularly for former members of armed forces and groups who are stigmatized or excluded. However, families may also act as barriers as well as enablers, particularly if stigma and misconceptions about persons with disabilities persist. To identify and address barriers to social reintegration, DDR practitioners should conduct sensitization that both challenges negative perceptions and acknowledges the gender and age dimensions of discrimination, engaging civil society representatives and supporting co-existence and social cohesion. Where necessary and possible, reintegration support should also be made available to caregivers to former members of armed forces and groups with disabilities. Peer support can also be critical to social reintegration, and is a well-established intervention used with success in facilitating the reintegration of individuals with disabilities following traumatic injury, such as one sustained from a landmine or unexploded ordinance. Peer support refers to the process of support and assistance to facilitate long-term recovery. It may involve knowledge sharing, skills sharing, practical assistance and/or emotional support that contributes to mental health and psychosocial well-being. Individuals who are trained in peer support can connect individuals with disabilities to opportunities, resources and communities of support. Persons with disabilities from the community are potential peer supporters for former members of armed forces and groups with disabilities. These individuals may also be important resources for facilitating access to social protection programmes, in countries where these exist. Peer support is specifically referenced in the CRPD, and capacity-building to establish peer support must be tailored to the specific DDR context. OPDs may provide peer support services, and the provision of seed money for the training of peer support workers and related initiatives can benefit both the community and returning members of armed forces and groups. Where appropriate, former members of armed forces and groups with disabilities can also be trained as peer support workers. Research in other contexts has demonstrated the empowering role that persons with disabilities can play when included in peer training for HIV/AIDS education, for example. Psychosocial and intellectual disabilities, including mental impairments, can hinder social and economic reintegration, particularly when these are associated with persistent mental health or cognitive conditions or disturbances in behaviour, including those stemming from acute stress, grief, depression and/or post-traumatic stress (see IDDRS 5.70 on Health and DDR). Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support delivered by trained non-specialists or mental health and psychosocial health specialists. These needs should be identified in health screenings conducted during demobilization and throughout the reintegration phase of the DDR programme (see section 7.4). Finally, schools offer critical avenues for achieving disability-inclusion for children and youth with disabilities affected by conflict. The global comprehensive school safety framework emphasizes three school safety pillars important for DDR and includes key guidance on disability-inclusive approaches (see also IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR). Political reintegration Political reintegration highlights the importance of giving voice and agency to former members of armed forces and groups with disabilities in decision-making in the community and broader political processes. In this regard, it may be useful to encourage the representation of former members of armed forces and groups with disabilities, exploring opportunities to partner with or join existing political associations for persons with disabilities. Such associations may help individuals to receive information regarding rights, resources and opportunities and may advocate for equitable assistance. These associations may also engage in counselling, training, the provision of credit for income-generating activities and employment, and other referral services. For further information on associations of former members of armed forces and groups, see IDDRS 4.30 on Reintegration.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "bf8c1b8f-83af-41ca-983e-6642a1a24941", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 25, - "Paragraph": "8. Disability-inclusive DDR-related tools In addition to DDR programmes, DDR processes can also include DDR-related tools such as community violence reduction (CVR), DDR support to mediation, and transitional weapons and ammunition management (WAM). DDR-related tools are immediate and targeted measures that can complement DDR programmes or be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0b393480-c1ad-44a0-890f-d90f3d52613f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 25, - "Paragraph": "8.1 Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment (see IDDRS 2.30 on Community Violence Reduction). They offer important avenues for disability inclusion, such as: Ensuring that targeting of groups susceptible to recruitment (i.e., youth at risk) includes persons with disabilities; Provision of disability- and gender-inclusive alternatives to violence-based livelihoods; Provision of mental health and psychosocial support to at-risk youth and former members of armed forces and groups, inclusive of persons with disabilities; Partnerships with OPDs and the capacity-building of these organizations; Raising awareness of the rights of persons with disabilities and disability inclusion, including through civil society networks in coordination with national human rights mechanisms and working groups on disability functioning at national and/or local levels; and Provision of stop-gap support to former members of armed forces and groups with disabilities who are waiting for reintegration support, in close cooperation with the national DDR programme (where applicable) and national disability structures.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fbfc1a98-8a35-4858-b41b-fa1ee5e386c6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 26, - "Paragraph": "8.2 DDR support to mediation Peace agreements seek to end armed conflict but also to ensure sustainable peace by addressing those issues that caused conflict. As such, they can help to create environments where persons with disabilities are empowered and fully integrated into post-conflict societies. In this regard, DDR practitioners should advise mediators on the importance of including the voices of persons with disabilities in peace negotiations and actively removing barriers to their inclusion. It should also be clear as to whether peace agreement provisions relate to disabilities acquired prior to conflict, during conflict or both. Intersectionality should also be acknowledged, as failure to do so means that the specific challenges of certain groups (children with disabilities, women with disabilities, former members of armed forces and groups with disabilities, etc.) may not be identified and addressed. Peace agreements can lay the foundations for more substantive policies and law reform by ensuring that a disability lens is adopted in post-conflict mechanisms. DDR practitioners should therefore advise mediators that the language included in peace agreement provisions related to persons with disability should be empowering, for example, by viewing disability as a differentiating characteristic no different from gender, race or religion. Viewing persons with disabilities only as victims requiring support may perpetuate their marginalization and disempowerment. Where DDR is linked to a process of security sector reform, peace agreements may contain specific provisions related to the integration of former members of armed forces and groups with disabilities into the security sector (see IDDRS 6.10 on DDR and Security Sector Reform). In line with CRPD, DDR practitioners should advise mediators that members of armed forces and groups with disabilities shall not be excluded from opportunities to integrate into the security sector solely because of their disability. If a person is unable to perform a specific role due to the nature of his/her disability, an alternative role should be sought, and only if an alternative role is unavailable should the person be demobilized and supported to reintegrate into civilian life. Persons with disabilities may also opt for demobilization and reintegration on a voluntary basis, if this option is on offer. However, existing members of armed forces shall not be forced to demobilize solely on the basis of their disability.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "a24be40c-4ecc-46b1-865e-9e7a51363e1d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 26, - "Paragraph": "8.3 Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Barriers to the participation of persons with disabilities in transitional WAM measures should be identified and rectified. It may also be particularly helpful to engage persons with disabilities in sensitization efforts highlighting the dangers of weapons possession and unsafe storage (irrespective of whether their disability was caused by armed conflict). Such sensitization work can positively highlight the capacities of persons with disabilities.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e3073fc4-e83e-4f38-9f9d-08070dca745e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 27, - "Paragraph": "9. Monitoring and evaluating disability-inclusive DDR processes Addressing disability inclusion in mechanisms for monitoring and evaluation (M&E) is essential for a DDR process to ensure accountability to all stakeholders and, in particular, the affected population. Disability inclusion shall be monitored and evaluated as part of a broader M&E plan for the DDR process (see IDDRS 3.50 on Monitoring and Evaluation). In general, arrangements for monitoring disability inclusion during DDR should be made in advance between all implementing partners, using existing tools for monitoring and applying international best practices on disability data (see Annex C for more on disability and data). It is important for data on DDR participants and beneficiaries to be collected so that it can be easily disaggregated on the basis of disability (and other factors, including sex and age). This means that numerical data should be systematically collected for ex-combatants, persons formerly associated with armed forces and groups, and dependants. Every effort should be made to disaggregate the data by disability in addition to sex and age, other specific needs categories (e.g., people living with HIV/AIDS), DDR location(s), armed force/group affiliation, etc. Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability inclusion within DDR processes and the broader inter-agency approach to DDR. DDR practitioners should ensure that an evaluation of disability inclusion during the early stages of a DDR process is carried out and factored into later stages. Gender should also be taken into consideration in the evaluation to assess if there were any unexpected outcomes of the DDR process on women and men with disabilities, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders, in accessible formats, to guide future policies and to improve the effectiveness of future planning and support to operations. While monitoring indicators appropriate for DDR will be designed according to the context in which DDR is implemented and the DDR strategy and components, the inclusion of disability-specific indicators should be identified to guide DDR practitioners in the establishment of monitoring mechanisms and systems. Some sample indicators for DDR programmes are provided in Box 8, and more detailed guidance is provided in Annex C. BOX 8: SAMPLE DISABILITY-INCLUSIVE INDICATORS FOR DDR PROGRAMMES", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "02000e1d-6d17-4c9c-afd0-1be95eaffd30", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 28, - "Paragraph": "Annex A: Abbreviations CRC\t\tConvention on the Rights of the Child CRPD\t\tConvention on the Rights of Persons with Disabilities CVR\t\tcommunity violence reduction M&E\t\tmonitoring and evaluation OPD\t\torganization of persons with disabilities WAM\t\tweapons and ammunition management WASH\t\twater, sanitation and hygiene", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fa143f56-3282-44ca-892b-61be4cf014b7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 28, - "Paragraph": "Annex B: Barrier checklist A social understanding of disability in the context of a DDR process focuses attention on the removal of barriers to equalize opportunities between persons with and without disabilities. Directing attention to the removal of barriers in a DDR process provides benefits to a broad range of persons with disabilities. While reasonable accommodation will still be required to ensure all persons with disabilities can participate in and benefit from a DDR process, this approach is applicable to complex DDR processes. The following table provides examples of how an approach to barrier removal may be applied to benefit individuals with a range of functioning difficulties. The functional difficulty categories in the final column of the table are based on the Washington Group Short Set of questions. The examples provided are not exhaustive and are not a substitute for consultation with OPDs. TABLE 2: BARRIER REMOVAL AS APPLIED TO A RANGE OF FUNCTIONING DIFFICULTIES", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9b79b301-cb26-41fd-ae0a-81870ee0b3ac", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 30, - "Paragraph": "Annex C: Disability and data The necessity of ensuring that disability data is captured accurately is underscored in the UN Convention on the Rights of Persons with Disabilities. Article 31 provides that \u201cinformation \u2026 shall be disaggregated, as appropriate, and used to help assess the implementation of States Parties\u2019 obligations \u2026 to identify and address the barriers faced by persons with disabilities in exercising their rights\u201d. The 2030 Agenda for Sustainable Development has as its overarching goal that no one is left behind in development and, accordingly, acknowledges the role of data \u2013 specifically, the disaggregation of data \u2013 as central to this effort. There are numerous challenges to capturing accurate disability data: It is not possible to write one question or a short set of survey questions that can adequately, accurately and comprehensively capture the complexity of disability. Any survey questions must be short, clear and precise. Often, problematic questions are used that result in poor capture of data. These challenges can be addressed. In 2001, the Washington Group on Disability Statistics was established as a City Group under the aegis of the UN Statistical Commission to: Address the need for population-based measures of disability. Foster international cooperation in the area of health and disability statistics. Produce internationally tested measures to monitor the status of persons with disability. Incorporate disability into national statistical systems. The Washington Group website and complete set of resources may be found at http://www.washingtongroup-disability.com/. The Washington Group approach acknowledges that: Disability is complex. Disability incorporates a variety of different components: body functions and structure, limitations in activities (capacity), and restrictions in participation (performance). Disability includes characteristics of both the person and their environment. The language of disability is not specific. In many cultures, stigma is associated with disability, creating additional challenges to measurement and, ultimately, inclusion. The Washington Group developed a set of questions that capture a part of the disability complexity and that can be used in a valid, reliable and internationally comparable manner. They can be used in conjunction with other data collected in a census or survey (related to outcomes like access to DDR processes, education or employment) to undertake analyses consistent with the social model of disability. The Washington Group defined an approach to measuring disability based on identifying those who, because of difficulties doing certain universal, basic actions, are at greater risk than the general population for limitations in participation. The objectives of the Washington Group Short Set are to: Identify persons with similar types and degree of limitations in basic actions, regardless of nationality or culture. Represent the majority of (but not all) persons with limitations in basic actions. Represent commonly occurring limitations in domains that can be captured in the census context. The intended use of the Washington Group Short Set is to: Compare levels of participation in employment, education or family life for those with disability versus those without disability to see if persons with disability have achieved social inclusion. Monitor effectiveness of programmes and policies to promote full participation. Monitor prevalence trends for persons with limitations in specific basic action domains. For some important limitations and considerations in relation to using the Washington Group Short Set, see Box 9. The brevity of the module \u2013 six questions \u2013 makes it well suited for inclusion in larger surveys, and for disaggregating outcome indicators by disability status. To maximize international comparability, the Washington Group Short Set obtains information on difficulties a person may have in undertaking basic functioning activities that apply to people in all cultures and societies and of all nationalities, and so are universally applicable. The final set of questions includes difficulties seeing, hearing, walking or climbing stairs, remembering or concentrating, self-care and communication (expressive and receptive). The question set with specific instructions may be accessed at https://www.washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "16302cbe-0fb8-4aec-8ebb-7ae84ce0ce21", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 32, - "Paragraph": "Children with disabilities The Washington Group questions are designed to collect information on the population aged five years and above, with a knowledgeable proxy respondent providing information for children. Because they were not specifically designed for use among children, they do not include key aspects of child development important for identifying disability in children, and the wording of certain domains may not be relevant (or suitable) for children and adolescents. The WG-UNICEF Module on Child Functioning is designed to meet the needs of identifying and measuring disability in children. The question set with specific instructions may be accessed at https://www.washingtongroup-disability.com/question-sets/wg-unicef-child-functioning-module-cfm/.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2edbcf29-93db-4a80-bd07-fc22002277ff", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 32, - "Paragraph": "Indicators for disability-inclusive DDR During planning, core indicators need to be developed to monitor the progress and impact of disability-inclusive DDR initiatives. These should include process indicators, such as the provision of assistive devices and the number of peer supporters trained, and outcome indicators, like disability prevalence among DDR participants and the number of ex-combatants seeking disability supports. Where relevant, DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonized with national indicators (if they exist). DDR planners, implementing partners and national counterparts should agree on the benchmarks against which disability inclusion in DDR will be assessed.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "27fe07ea-3f56-4e25-a878-88ac9d568d69", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 33, - "Paragraph": "Annex D: Disability-inclusion markers Disability-inclusion markers are under development in various organizations. To ensure disability inclusion in a DDR process, an inclusion marker applied to budgeting at the design stage could help to ensure that disability-inclusion measures are adequately aligned to budgeting, a factor the research discloses has been inadequate in past DDR processes and has led to serious disaffection and required emergency donor budget infusions. A Disability Budget Scan, a tracking mechanism to monitor the integration of disability-inclusive interventions from the design to the implementation and evaluation phase, could help ensure that disability-inclusive interventions within DDR are adequately funded at the outset (and throughout) a DDR process. Under a Disability Budget Scan, budget lines are screened and classified according to four categories: No disability-inclusive link. Disbursements made without any disability-inclusive analysis. No expenditures aimed at, for example, barrier removal in DDR cantonment and registration sites. No budget lines to address reasonable accommodations for individual needs such as assistive devices or sign language interpreters. Disability-sensitive link. These expenditures are intended to provide different responses to meet the individual and collective needs of persons with disabilities. Examples include budgeting for physical barrier removal for housing, assistive devices, screening for disability prevalence and supplemental cash payments to address requirements of individuals with disabilities. Strengthening disability-inclusion link. Expenditures aimed at strengthening disability inclusion, at the institutional level. Examples include capacity-building of disability focal points in line ministries or in partner institutions or strengthening community-based organizations that provide supports to persons with disabilities. Disability inclusive. Specific actions within a DDR process seeking to transform disability inclusion broadly in society. These expenditures address the strategic interests of persons with disabilities by contributing to long-term structural and sustainable changes in societies to promote disability equality and non-discrimination on the basis of disability. Examples include support for disability awareness campaigning in returning communities and local sensitization about disability inclusion, support for disability law and policy reforms, and support for the establishment of community-based rehabilitation programming broadly.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8fe04957-f880-48c5-8a99-2b921cdd4875", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...3 1. Module scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.4 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.4 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20265 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u20266 4.1 Voluntary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u20266 4.2 People centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20267 4.2.1 Criteria for participation/eligibility \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u20267 4.2.2 Unconditional release and protection of children \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u20267 4.3 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026.8 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 8 4.5 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20269 4.6 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20269 4.6.1 Flexible, sustainable and transparent funding arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.9 4.6.2 Accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 ..9 4.7 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..10 4.8 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u202610 4.9 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u202610 4.10 Well planned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u202610 4.10.1 Planning, assessment, design, monitoring and evaluation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u202611 4.11 Public information and community sensitization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026..11 5. The primacy of politics in the SSR-DDR nexus \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.11 5.1 Adequately reflecting DDR/SSR questions into mediation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...11 5.2. Creating entry points \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.12 5.3 Adopting a broad view of security sector governance \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...12 5.4. Bringing technical knowledge and concrete examples to the mediation process \u2026\u2026\u2026\u2026\u2026.13 5.5. Ensuring that DDR/SSR questions are linked to political and economic chapters of the peace agreement \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202613 5.6. Defining the role and mandate of technical commissions and bodies with planning and mediation mandates in the peace process and beyond \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202614 5.7. Risks of deferring agreements on future security governance architecture \u2026\u2026\u2026\u2026\u2026...\u2026...14 5.8. Considering the role of the private sector \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...14 5.9. Supporting temporary and transitional security arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.15 6. Joint DDR and SSR support to the integration of former combatants into the security sector...15 6.1. The role of political frameworks and processes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...16 6.2. Understanding the scope of integration through a political lens \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202616 6.3. Integrating Gender in integrated DDR/SSR support \u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...17 6.4. Registration of individuals joining the integration process \u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.....17 6.5. Vetting as a step in the integration process \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u202618 6.6. Vetting of former combatants against professional eligibility criteria \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026..18 6.7. Recognizing risks during the design and execution of integration processes \u2026\u2026\u2026\u2026\u2026\u2026\u202618 6.7.1 Neglecting the link between military and police integration and reform \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u202619 6.7.2. Undermining the development of people centered policing \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u202619 6.7.3 Contributing to a security vacuum \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u202619 6.7.4 Increasing protection risks to communities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202620 6.7.5 Integration as a political bargaining chip \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..20 7. DDR-related tools as an entry point and catalyst for SSR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u202620 7.1 Transitional weapons and ammunition management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026..20 7.2 Weapons and ammunition integration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.21 7.3. Integrated DDR and SSR assessments at the local level \u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...21 7.4 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026..\u2026 22 7.4.1 Concurrent SSR and CVR programming \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u202622 7.4.2 Sequential CVR and SSR programmes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..22 8. Reintegration of former combatants into civilian life and linkages to SSR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...22 8.1. Reintegration assistance for individuals found to be ineligible for integration against professional eligibility criteria \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026..23 8.2. Reintegration programmes in support of government-led efforts to decommission security personnel following war-time military mobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u20263 8.3 Reintegration assistance versus separation benefits and pensions \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u202624 9. DDR, SSR and cross-cutting issues \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..24 9.1. Adopting a national funding lens for DDR and SSR programmes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 24 9.2 Integrated approach to partnerships \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026..25 Abbreviations \u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026.\u202625 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.\u202625 6.10 DDR and Security Sector Reform", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c25af8ba-364c-46c5-81be-011b04ceeea3", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "Summary DDR and security sector reform (SSR) are inherently political processes that, in a post-conflict environment, are typically closely linked. However, there are important differences in the focus, scope and timeline of DDR and SSR processes. While DDR focuses on finding solutions for armed groups and their members in conflict-affected and post-conflict contexts that have seen high levels of military mobilization, SSR processes aim to develop and rebuild a wide range of institutions, processes and mechanisms that would re-establish the functioning of an effective and accountable security sector under the control and oversight of a civilian government and institutions. There are many points of natural intersection between DDR and SSR. DDR processes are typically linked to SSR through the integration of former combatants into the security sector in the context of a peace agreement. Equally, DDR-related tools, including community violence reduction (CVR) and transitional weapons and ammunition management (WAM), can provide bottom-up, people-centred complements to top-down SSR processes. Finally, reintegration support can also be provided to former combatants who wish to enter the security sector but are found to be ineligible or for integration into security institutions. The most prominent linkage between DDR and SSR in post-conflict contexts is to be found in integration processes. It is generally accepted that the failure or relative success of any integration process will have a significant impact on the durability of peace accords and the probability of relapse into conflict. When considering the linkage between DDR and SSR, DDR practitioners shall always seek to understand national and local aspirations, as expressed through political dialogue, rather than attempt to impose externally defined and developed processes on national actors. DDR practitioners shall seek to integrate SSR issues into DDR assessments and, as DDR and SSR often operate on different timescales, shall ensure that DDR processes are undertaken in ways that do not hinder or block subsequent or future security sector reform. One example is the support to the establishment of transitional security arrangements that primarily involve former combatants and that are intended to pave the way for long-term security institutions and governance arrangements. Experience has shown that support to the establishment of temporary and transitional security arrangements, in particular, has to be carefully balanced against the need to use limited political and financial resources to reach sustainable political and security solutions. Equally, practitioners need to ensure that demands of armed groups that are deemed to reflect root causes of the conflict, such as political and economic exclusion, abuse and discrimination stemming from the security sector, are accounted for when designing the SSR process. The failure of any integration process can significantly impact post-conflict environments by threatening peace and security, and the durability of peace accords. Importantly, when discussing opportunities involved in DDR with former or current members of armed forces and groups, including women, men, and youth, DDR practitioners shall not imply any individual entitlement to integration into the security sector, especially not merely because of the individual\u2019s status as a former member of an armed force or group. Instead, DDR practitioners should be aware of the existing legal and policy framework, and ensure that they understand the status of the SSR process and how it may or may not relate to demands, grievances and/or questions raised by armed groups. Integration processes are typically based on political agreements. Yet DDR-related tools are sometimes undertaken in the absence of such agreements \u2013 making it challenging to develop the right linkages to the SSR process. Even where political agreements exist, provisions on integration and related rights/entitlements of former combatants are often vague and may require additional and ongoing negotiations, if they are to be translated into policies and plans for SSR processes. Where possible, the peace agreement should outline specific provisions on the integration of both males and females into representative and inclusive security sector institutions. Action should be taken to ensure the full, equal, meaningful and effective participation of women in both DDR and SSR processes and in all decision-making settings, and, when a DDR programme is linked to integration into the security sector, women shall be given the same opportunity to integrate as men.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8e88044b-6d97-46b5-b445-d3e053a65da1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 4, - "Paragraph": "1. Module scope and objectives This module provides DDR practitioners with an overview of areas where DDR programmes, DDR-related tools and reintegration support may be linked to SSR. The objective is to support close coordination between DDR and SSR efforts by actively promoting synergies and preventing harmful interactions in the planning, design and implementation of DDR and SSR processes. The guidance is applicable to both mission and non-mission settings.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "3d8860e6-dc9a-49b6-94fe-2b93b9d94c09", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Integrated DDR processes are composed of different combinations of DDR programmes, DDR-related tools and reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Security sector is a broad term often used to describe the structures, institutions and personnel responsible for the management, provision and oversight of security in a country. It is generally accepted that the security sector includes defence, law enforcement, corrections, intelligence services and institutions responsible for border management, customs and civil emergencies. Elements of the judicial sector responsible for the adjudication of cases of alleged criminal conduct and misuse of force are, in many instances, also included. Furthermore, the security sector includes actors that play a role in managing and overseeing the design of security, such as ministries, legislative bodies and civil society groups. Other non-State actors that could be considered part of the security sector include customary or informal authorities and private security services. Security sector reform describes a process of assessment, review and implementation, as well as monitoring and evaluation, led by national authorities that has as its goal the enhancement of effective and accountable security for the State and its peoples without discrimination and with full respect for human rights and the rule of law. Integration into the security sector refers to the process through which former members of armed forces and groups are incorporated into the national security structures and institutions responsible for the management, provision and oversight of security in a country. Rightsizing occurs when the number of personnel within the security sector is adapted (increased or reduced) to match the needs of the security sector, as defined through national consultations and assessments.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "475e920c-3530-428e-9288-eca0a528efc8", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 5, - "Paragraph": "3. Introduction The provision of security is a core function of the State. However, in some contexts, the statutory security sector is not able to protect the population against threats, and may marginalize, exclude or even prey on the very populations it is entrusted to protect. If the national security sector is corrupt, non-inclusive, unresponsive, incoherent, ineffective, inefficient and/or unaccountable to the public, the sector may be considered among the root causes of conflict \u2013 and, as such, could also be among the factors that led to the emergence of armed groups. In a post-conflict context, security sector reform offers an opportunity to address shortcomings of the security sector that may have contributed to the conflict and that increase the risk that the country will relapse into conflict if not addressed. \t It is important to understand the overarching political framework that will define and drive DDR and SSR processes, and the entry points as well as limitations that these frameworks present for addressing DDR- and SSR-related challenges. Relevant political and security frameworks, agreements, strategies and plans will typically also define the way in which DDR and SSR processes interlink in that particular context. In (post-)conflict settings where a peace agreement was signed or a political settlement reached, the agreement will typically outline the objectives, scope and possibly timelines of DDR and SSR processes. DDR may contribute to SSR and vice versa; neither is a prerequisite for the other, and SSR and DDR processes often operate on different timelines. Yet, while certain aspects of the SSR and/or DDR process may be defined in detail, sensitive provisions that link DDR to SSR, such as the integration of combatants into the security sector, are often left to further negotiation, while only temporary and transitional security arrangements are defined in the peace agreement. It is important to keep in mind that nationally led SSR processes will result in national decisions on the mandate, structure and composition of security sector institutions. National SSR decisions will typically be reflected in national security policies, strategies and legislation and will effectively translate (often vague) SSR provisions from peace agreements into national policy and legal frameworks. This is a deeply political process that will unfold over the course of many years and that has the potential to transform the power relations and representation of societal groups in the security sector over time. If political and security-related demands made by armed forces and groups that were contained in the political and/or peace agreement preceding the national SSR process are not sufficiently integrated into the SSR process, this may pose a significant risk for relapse into conflict. Therefore, it is critical that UN DDR, SSR and political experts \u2013 in cooperation with key partners \u2013 maintain close dialogue and coordinate to ensure that UN support is targeted at addressing structural risks within the security sector. For armed groups and their members, this will often be expressed in exclusion and underrepresentation in the security sector and lack of access to associated economic benefits. Keeping with the principle that UN support must be guided by the primacy of political solutions when designing UN support strategies, the linkages between DDR and SSR will be presented in two large categories. First, section 5 will consider the issues that are most directly linked to the peace process and have the highest impact on advancing the political process, reconciliation and sustainable peace. These issues revolve around implementing provisions of the peace agreement and ensuring that the SSR process results in more inclusive, accountable and responsive institutions. The second set of issues, addressed in section 6, deals with programmatic tools and approaches (employed by DDR and SSR practitioners) that present important entry points for institutional reform and build trust as well as critical capacity for future peace.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "cb0e8bf0-9091-4fd0-b6da-252e71beae24", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 6, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and SSR.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "1a3133a7-7c41-4078-9891-8eeec6563b35", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "4.1 Voluntary In contexts where a DDR programme is linked to SSR, the integration of former members of armed forces and armed groups into the security sector shall be voluntary.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "97db3733-9037-4225-a334-622710e1f8e7", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 6, - "Paragraph": "4.2 People centred The basis for the legitimacy, viability and sustainability of the reform and governance of the security sector in a specific national context lies in the expressed needs and visions of the people; this shall be the core driver of any SSR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "0d70927d-efbc-4b15-8888-aa1310ca033d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "4.2.1 Criteria for participation/eligibility When a DDR programme is linked to SSR, male and female former members of armed forces and groups shall only be integrated into the reformed security sector if they are vetted and meet the designated integration criteria (see section 6.5). A former member of an armed force or group shall not be integrated into security sector institutions merely because of his or her status as a former member of an armed force or group. It should be noted that integration is sometimes organized within the framework of broader recruitment campaigns, whereby certain quotas are assigned for those who are being integrated during each recruitment campaign. The criteria for those to be integrated in the framework of a recruitment campaign may differ from those of regular recruits. The primacy of politics and need to address the root causes of conflict, such as exclusion, should take precedence, and technicalities should not be cited to prevent the integration of former combatants that has been agreed to at the political level. Understanding the vital role that females can play in the security sector is paramount to successful, inclusive SSR processes, and to the full representation of women in the security sector in support of the implementation of Security Council resolution 1325 (2000). Integration processes should therefore ensure the eligibility of women, and include outreach and sensitization to ensure they are aware of their options and eligibility. SSR practitioners and support to SSR programs should ensure reformed security institutions provide fair and equal treatment to female personnel, including their special security and protection needs. Security sector reform takeholders should pay particular attention to children. Children shall not be recruited into security sector institutions. When undertaking security sector reforms, States shall mainstream child protection, including through the inclusion of child protection in military training and standard operating procedures, as well as through the establishment of child protection units and focal points in their national security forces and the strengthening of effective age assessment mechanisms to prevent underage recruitment into security sector institutions (see IDDRS 5.20 on Children and DDR). Members of armed forces and groups who have been involved in the commission of war crimes, crimes against humanity, genocide and/or gross human rights violations shall not be eligible for recruitment into the security sector, including when DDR programmes are linked to SSR (see IDDRS 2.11 on The Legal Framework for UN DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8e4b31c8-818b-414f-90bc-355950faa026", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 7, - "Paragraph": "4.2.2 Unconditional release and protection of children All child recruitment or use by armed groups is illegal under international law, as is all use of children in hostilities, conscription by State armed forces or voluntary recruitment under the age of 18 without minimum safeguards. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child protection. This is expressed in a comprehensive set of international legal instruments, including the Optional Protocol to the Convention on the Rights of the Child on the involvement of children in armed conflict and the Rome Statute, and is reinforced by a series of Security Council resolutions. For a detailed normative and legal framework, see IDDRS 5.20 on Children and DDR. Efforts to prevent the recruitment and use of children by armed forces and groups should be a primary consideration during all DDR and SSR processes, irrespective of the stage of the conflict or status of peace negotiations. When a DDR programme is linked to SSR, children associated with armed forces and groups shall not be included in troop numbers because their presence is illegal, and including them may encourage further recruitment of children in the period before peace negotiations. Negotiations on DDR, SSR and force reduction shall include the unconditional and immediate release of all children associated with armed forces and groups. Progress should be made by armed forces and groups on child release before SSR processes are initiated, and the requirement that children be released without precondition prior to negotiation on integration into armed forces and/or the security sector should be stipulated and enforced to discourage their recruitment. The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible. Children associated with armed forces and groups should be treated separately from adult combatants. They should benefit from special protection and assistance measures that are gender and age appropriate. They should be regarded and treated as victims, regardless of how they were recruited, and their best interests need to be a primary consideration. International legal standards pertaining to children shall be applied (see more in IDDRS 5.20 on Children and DDR).", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "c72c1a78-132e-435e-aea2-81ae824ce67f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 8, - "Paragraph": "4.3 Gender responsive and inclusive Women and men have an equal right to participate in security delivery and oversight. Though men continue to be vastly overrepresented in security and oversight bodies (such as parliament and the judiciary), security sector institutions that reflect societies at large in terms of sex, ethnicity, tribal affiliation, religion and sexual orientation are more likely to be trusted and considered legitimate. Women\u2019s presence will also increase the responsiveness to the concerns of the entire population. The increased participation of women in security sector institutions has been shown to improve these institutions\u2019 functioning in areas such as sexual and gender-based violence (SGBV) reporting rates, intelligence gathering and the treatment of female witnesses, victims and suspects. The involvement of women and women\u2019s groups from civil society in the SSR processes that accompany and follow DDR should also be deliberately planned from the start. Gender-responsive DDR recognizes that women play a multitude of roles, including as combatants, advocates and caregivers, and that each of these roles has a direct impact on the success of DDR processes. Including women as participants and decision-makers in DDR and SSR processes ensures benefits to individuals, households and communities.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "021c01b9-110a-4bca-bf5f-d1a0c2f9e6a0", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 8, - "Paragraph": "4.4 Conflict sensitive SSR and DDR processes shall be undertaken in a conflict-sensitive manner, ensuring that, when DDR and SSR are programmatically linked, this linkage does not increase the risk of further conflict or the risk that DDR and SSR will jeopardize each other. As DDR and SSR impact local power structures, sovereignty and national security issues, practitioners shall understand, acknowledge and anticipate any possible adverse effects.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "049d7dc6-c0e4-4d0e-9161-64c3c4083ae5", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 8, - "Paragraph": "4.5 Context specific Many contextual factors influence DDR and SSR, including local power dynamics, the way in which the armed conflict ended, and the nature and interests of central State authority. Given the context-specific ways in which DDR and SSR can influence each other, there is no ideal model for DDR and SSR processes. If and when DDR and SSR are linked, this linkage shall be tailored to the particular context. The politically sensitive nature of decisions relating to DDR and SSR means that external actors must pay particular attention to both the form and substance of their engagement. Close understanding of context, including identification of key stakeholders, is essential to ensure that support to national actors is realistic, culturally sensitive, inclusive and sustainable. Externally driven pressure to move forward on programming priorities will be counterproductive if this is delinked from the necessary political will and implementation capacity to develop policy and implement programmes at the national level. 4.6", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "1ad1b506-b525-4356-bd5c-7e491bc52d20", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 9, - "Paragraph": "4.6.1 Flexible, sustainable and transparent funding arrangements Planning for DDR and SSR processes must be flexible and responsive to changing conditions on the ground, but should also keep in mind the need to balance funding for short-term programmes with the long-term costs of reforms required to sustain peace and facilitate development and the achievement of the Sustainable Development Goals. Simultaneous (yet separate) funding arrangements for DDR and SSR may be considered, although caution shall be taken to ensure that funding delays in one area do not lead to implementation delays in another. To avoid implementation delays, the use of multi-donor trust funds that address both DDR and SSR may be considered. Funding should ensure that the needs of women, children and youth are addressed to sustain the long-term success of DDR and SSR processes.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "a0f76bc0-07ac-440d-9848-c47c83e47a5f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 9, - "Paragraph": "4.6.2 Accountable and transparent DDR and SSR processes should contribute to accountable and transparent security sector governance, including transparency in security sector finances. They should not only focus on improvements to the operational capacity of security sector institutions, but also aim to reinforce the accountability of security-providing institutions to the executive branch, legislature and judiciary; independent oversight bodies; and civil society. Effective security forces, such as the armed forces and police, are accountable to the populations they serve and require staff that act with professionalism and integrity. To ensure this, vetting processes based on transparent criteria shall be conducted and constitute an important link between DDR programmes and SSR (see section 6.5 and 6.6).", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "245b4ae5-c00d-4932-a5c6-1229227b9b9a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 9, - "Paragraph": "4.7 Nationally and locally owned Practitioners shall facilitate DDR and SSR processes that are nationally and locally generated through political consensus, rather than attempt to bring national actors into processes that are externally imposed. SSR and DDR processes should be underpinned by an inclusive national dialogue process in order to ensure that the needs and security perceptions of the State and its citizens are taken into account. These consultations should be wide-ranging and include authorities at various levels, from all branches of Government and security sector institutions, as well as national human rights institutions and civil society \u2013 especially women\u2019s and youth groups and child protection advocates. Such dialogue should take into account the fact that security and insecurity are often defined and experienced differently by women, men, boys and girls, as well as members of minority groups. The broader the national constituency engaged in SSR, the better the prospects for sustainability. To further support national and local ownership, where necessary and appropriate, DDR practitioners shall support activities that build the capacity of national and local authorities to manage, implement, monitor and evaluate DDR and SSR processes. National ownership should, where possible, also be demonstrated through commitments of human and financial resources from the State budget.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "3860b21b-326f-48c8-a407-cb17684033ea", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 9, - "Paragraph": "4.8 Regionally supported Where appropriate, DDR practitioners shall account for regional dynamics in their planning and analysis. Many of the challenges that impact SSR and DDR in a country are transnational in nature, including trafficking in humans, drugs and weapons (see IDDRS 6.40 on DDR and Organized Crime). If armed conflict is ongoing in neighbouring States, (former) members of armed groups may cross international borders either to join a new armed group or to attempt to access ongoing DDR and SSR processes. While SSR and DDR are always guided by the principle of national ownership, practitioners should consider dedicated programmes to mitigate risks stemming from regional dynamics. For example, capacity-building in border management can support DDR and SSR processes through restricting the movement of combatants and arms across borders.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2a1d1136-a243-4c38-865c-eddca55e32a6", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 10, - "Paragraph": "4.9 Integrated Where possible and appropriate, DDR and SSR processes shall be integrated with complementary efforts to promote immediate and long-term improvements in security and security sector governance. DDR and SSR processes shall always be integrated into wider political processes and should also be integrated with arms control efforts, mine action and/or initiatives to redress past crimes and promote reconciliation through transitional justice (see IDDRS 4.11 on Transitional Weapons and Ammunition Management and IDDRS 6.20 on DDR and Transitional Justice). In countries emerging from armed conflict, linkages should also be made between national security policies and strategies (developed as part of an SSR process), support to reintegration (through a DDR process) and wider national-level development frameworks and priorities.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "a339cfbb-f86d-4cc3-8f12-6e250ebf23bc", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 10, - "Paragraph": "4.10 Well planned Both DDR and SSR practitioners shall integrate concerns specific to their respective programmes within assessments, planning and process/programme design. In doing so, they are encouraged to use existing assessments (e.g., Joint Mission Analysis Centre products, an Integrated Strategic Framework or United Nations Development Assistance Framework, or Human Rights Due Diligence Policy risk assessments) and coordinate with relevant components in assessment, planning and process/programme design. They shall also clearly define the scope of activities that should link to a realistically achievable DDR/SSR end state. Planning should be participatory and engage a wide range of stakeholders. Monitoring and evaluation should provide an entry point for reviewing DDR and SSR processes to ensure that they are planned in a mutually supportive manner, and that unintended consequences are assessed and DDR/SSR objectives and priorities are adjusted accordingly. Baseline data should be collected and continuously updated and disaggregated by sex and age, where possible. Further gender and age analysis should be integrated into the monitoring and evaluation strategy, where applicable. For further information, see IDDRS 3.50 on Monitoring and Evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b1b27b52-73c3-4469-8ba9-00712024ce9c", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 10, - "Paragraph": "4.11 Public information and community sensitization The timing, sequencing and implementation of DDR and SSR processes should be supported by a public awareness campaign to build the confidence of all relevant stakeholders (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In order to (re-)establish trust in public institutions, the public must be aware of and trust the institutional reform effort. Transparency about reform efforts and broad consultation about the objectives of the reform will help to build confidence in the impartiality and effectiveness of the process and reduce uncertainty among those affected by the reforms. In particular, public awareness can help to deter mis/disinformation campaigns hampering the reforms at their inception phase and pre-empt later attempts to cast doubt on the validity of the DDR and SSR processes and block it.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "e409eb40-2f95-478b-8ef8-96d973504da1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 10, - "Paragraph": "5. The primacy of politics in the SSR-DDR nexus This section highlights areas where DDR and SSR processes link to highly sensitive political dynamics affecting the balance of power and distribution of resources among different actors in a given context. It is important that UN support to DDR and SSR is well integrated in these contexts and geared towards addressing structural risks and root causes of conflict that can be found in the security sector and its governance structures. This section considers the context of peace processes and mediation and adopts a broad view that SSR and DDR should be designed and used to effectively end conflict and prevent its recurrence through political engagement and structural prevention that address deep-seated grievances related to the security sector.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "cbee8085-5ed9-43ca-9c63-5c25fc479935", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 11, - "Paragraph": "5.1 Adequately reflecting DDR/SSR questions in mediation Where possible, both DDR and SSR practitioners should be available to support mediators engaged in the negotiation of peace agreements. SSR and DDR experts should also advise mediators engaged in conflict prevention by highlighting structural risks within the security sector and supporting dialogue with armed groups.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "afca7cb1-255f-43c5-86cc-b66a5516d319", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.2 Creating entry points that allow SSR/DDR processes to evolve beyond narrow provisions of the written agreement The most impactful linkage between DDR and SSR in peace agreements often pertains to provisions that determine the scope, process and modalities under which former combatants will join statutory security forces that will emerge as a result of the peace agreement. Advice to mediation should highlight the importance of including inclusive as well as age- and gender-responsive DDR and SSR language in the peace agreement. When the integration of male and female former members of armed forces and groups into the security sector is being considered, mediators or those providing advice to them should, if the political circumstances of the negotiations permit, encourage the inclusion of specific provisions in the peace agreement outlining the broad parameters of integration, including considering specific quotas for females and requiring vetting and personnel reform of the security sector. Such provisions place an unambiguous obligation on the negotiating parties that is difficult to later circumvent. Importantly, the explicit commitment to include women in the security sector may create an entry point to incorporate other underrepresented social groups and enhance the inclusivity of security institutions and their responsiveness to the needs of a diverse population.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2d4844a9-6b26-4164-af2f-ef8143411c7d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.3 Adopting a broad view of security sector governance \t In his report on security sector reform (S/2022/280), the Secretary-General adopted a wide understanding of security sector governance that goes beyond State institutions. This is important for SSR and DDR practitioners who are assessing the security sector with a view to developing options for SSR and DDR in conflict settings. As the Secretary-General noted, armed groups need to be considered part of security sector governance alongside other actors, even though they are not part of the statutory security sector. Understanding the role of armed groups in local, regional and national security dynamics is critical to developing realistic and sustainable options for SSR. Where armed groups play a strong role in the protection of specific ethnic and/or religious communities, mediation should focus on political and economic governance issues and their intersection with the security sector. Focusing on the composition of security institutions alone may not address underlying drivers of insecurity and conflict. Understanding the nature of insecurity and gaps in the overall institutional architecture is important and may facilitate agreements that go beyond the military and police. Considering the need for establishing people-centred security is important for strengthening the resilience of local communities and facilitating their capacity development to address fires, natural disasters, health emergencies, etc. Recognition of these needs may trigger the establishment of new institutions or lead to orienting existing ones towards peacetime tasks.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a609a498-d660-45de-b017-0b95c41f8c47", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.4 Bringing technical knowledge and concrete examples to the mediation process SSR/DDR experts involved in mediation processes should have not only a deep understanding of the parties and their expectations, positions and demands, but also solid knowledge of technical details of comparable DDR/SSR processes, including their planning assumptions, planned versus real implementation timelines, assumed and real costs, gender mainstreaming, considerations related to unconditional release of children, and previous DDR and/or SSR processes in the given context. Injecting such technical expertise into the dialogue may assist the parties in reaching more realistic agreements and avoiding pitfalls typically experienced in other contexts. Within mediation processes, SSR and DDR issues will often be discussed in the framework of a security-related mediation track. While this is positive, it will also be important that DDR/SSR experts are aware of other mediation tracks, in particular those pertaining to political, economic, human rights and justice issues, as DDR- and SSR-related issues need to be integrated into such discussions to avoid contradictions that may frustrate implementation.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "cc2ff1a4-d304-49be-9351-a909309f26ba", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.5 Ensuring that DDR/SSR questions are linked to political and economic chapters of the peace agreement The key dilemma faced by parties when negotiating SSR provisions of a peace agreement in many cases has to do with the long-term nature of reforming and developing a new security sector architecture. DDR, on the other hand, typically has a shorter time horizon, and there may be pressure to implement DDR early on, even when necessary preconditions are not in place. Therefore, an important question for mediators is how much detail on SSR/DDR is sufficient to facilitate the transition from conflict to sustained peace, and if/how those processes should be sequenced, including in relation to broader political processes. If we accept that an imperfect peace agreement is better than none, it is reasonable to omit specificities on SSR in favor of general commitments that reforms will ensure transformative outcomes, such as inclusiveness, democratic oversight and accountability. Increasingly, the practice has been that questions about the future of the security sector are assigned to technical bodies to deliberate and develop options, including on questions of integration of former combatants, for political leaders\u2019 decision-making. While this may indeed be the only option available to mediators in some circumstances, it is important to consider possible challenges for the peace process.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "84a7ea10-f7e5-457e-bb00-bd58aa9e0af0", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.6 Defining the role and mandate of technical commissions and bodies with planning and mediation mandates in the peace process and beyond Practice has shown that technical commissions created to develop proposals and reach agreement on outstanding questions of the SSR process often fail to deliver satisfactory agreements even after years of deliberations. The indication of clear timelines and targets for the work of SSR- or DDR-related technical bodies and committees should be included in the peace agreement, but even when included, it is often insufficient to push the process forward. The absence of a political agreement on security sector reform may also raise the stakes for the holding of post-conflict elections. It is therefore important to consider possible implications of sequencing different steps of the SSR and DDR processes and other major political and economic milestones in the peace agreement. In some contexts, the warring parties may agree that assessments (such as a threat assessment and security sector review) and national dialogue should take place only after national elections have been held. In other contexts, the parties will demand that agreement on major security policy and architecture issues (type, size, hierarchy and governance arrangements) are agreed upon and possibly included in a new constitution before elections are held. The challenges and opportunities of both options should be presented to the mediator and carefully considered. Once elected into office, new Governments will legitimately control security ministries and adopt strategies for security sector reform that may not sufficiently reflect former opponents\u2019 security needs and interests, thus raising the risk of relapse into conflict. The existence of SSR/DDR commitments stemming from a peace agreement can serve to protect the interests of former members of armed forces and groups but may also lessen pressure on the new Government from security or political constituents who may oppose the implementation of challenging reforms, such as the integration of former combatants into the security sector. A possible way of addressing this risk is to ensure that progress on both DDR and SSR is kept high on the agenda of senior UN leadership and partners, and that such progress is linked to international support for SSR and DDR, as these processes must be grounded in inclusive national agreements.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "c214472b-77d8-48ef-bb67-3446d285c5b1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.7 Risks of deferring agreements on future security governance architecture Armed forces and groups often fuel their activities by assuming control over resource-rich territory or may have access to funding from taxing the local population or illegal cross-border trafficking (see IDDRS 6.40 on DDR and Organized Crime). Sources of income that are linked to control over territory present strong incentives to maintain the status quo and will impact the scope of realistic options that mediators can offer to armed groups. Current resource revenues can prove relatively more attractive than the benefits offered through a DDR and/or SSR process and, as a result, individuals and groups may opt not to join DDR. Similarly, armed groups may agree to integrate into the armed forces but only on the understanding that they will be deployed to a specific geographical area. If such details were not discussed during mediation, provisions on integration may be rejected in full once the time comes for implementation, potentially undermining years of progress. Peace agreements that do not effectively address the role of natural resources risk leaving warring parties with the economic means to resume fighting as soon as they decide that peace no longer suits them. In contexts where natural resources fuel conflict, DDR and SSR processes should be planned accordingly. Where appropriate, DDR practitioners should advise mediation teams on the impact of militarized resource exploitation on DDR and SSR, and recommend that provisions regarding the governance of natural resources be included in the peace agreement and reflected in its political and economic chapters (see IDDRS 6.40 on DDR and Organized Crime and IDDRS 6.30 on DDR and Natural Resources). Beyond mediation, the design of DDR processes in this context should be integrated with strategies that address the security governance of natural resources, as well as the economic reforms aimed at ensuring the transparent and accountable allocation of natural resource concessions and the transparent management of the revenues derived from their exploitation.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a7616555-d98c-45a1-96c1-83e37e347c99", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.8 Considering the role of the private sector Former combatants are a natural target for private security companies. In some instances, members of armed groups leave to directly join private security firms, bypassing DDR. The line between a private security firm and an armed group is often blurry. Security sector reforms, such as the enactment of laws, can be useful to ensure that private security providers are regulated.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "5fb600cd-0adc-41e3-bd4f-6a03074a1a53", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "5.9 Supporting temporary and transitional security arrangements Considering that temporary and transitional security arrangements are often largely composed of combatants and armed group members, support to such structures will typically be provided by DDR practitioners. It is important to always keep in mind that the goal of such support must be to build trust and facilitate reaching sustainable political agreements that would allow such temporary arrangements to evolve into long-term and sustainable security governance structures. The Secretary-General has cautioned that UN support to temporary and transitional security arrangements should only be short-term in nature and that main efforts should focus on finding solutions that will underpin long-term security sector architecture at all levels. Where temporary security arrangements are functioning well, it is critical that options for legitimizing and institutionalizing such arrangements is supported early on, including through their inclusion in national security policy and planning frameworks, and provisions in the national budget. The close cooperation between DDR, SSR practitioners and the political leadership of the United Nations is critical in ensuring a timely and sustainable transition from transitional arrangements to longer-term solutions that can sustain peace and prevent relapse into conflict. If political and security-related demands by armed groups that were contained in the political and/or peace agreement that preceded the national SSR process are not sufficiently integrated into the SSR process, this may pose a significant risk for relapse into conflict. Therefore, even if temporary arrangements are working well as a \u201cholding pattern\u201d for former combatants, it is critical that UN DDR, SSR and political experts \u2013 in cooperation with key partners \u2013 maintain close dialogue and coordinate to ensure that UN support is targeted at addressing structural risks within the security sector. For former combatants, this will often be expressed in exclusion and underrepresentation in the security sector and lack of access to associated economic benefits.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "caa3b006-816a-4d16-b050-c2fdf7c9c66f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6. Joint DDR and SSR support to the integration of former combatants into the security sector The integration of former combatants into the security sector is a process that is complementary to DDR. It offers former members of armed forces and groups a path to becoming part of the State\u2019s security apparatus. Integration is primarily a political process, and its success will often also determine the long-term success of SSR and peacebuilding efforts in the aftermath of conflict. Integration brings with it complex technical questions and significant financial costs. Where an integration process is underway, it inevitably requires that the affected security forces, command, management and oversight bodies are adapted and restructured to deal with the inflow of new personnel. There are different models and approaches to integration, yet their success ultimately hinges on the degree to which a particular modality is aligned with underlying political, security and financial incentives of former combatants, while also preserving and strengthening the institutional integrity and effectiveness of security forces. This section addresses some overarching aspects of integration that should always be considered when planning and implementing a security sector integration process.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9ecab374-33c1-46f9-ac27-88ccf4e424cd", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.1 The role of political frameworks and processes Traditionally, peace agreements contained detailed provisions on DDR, transitional and permanent security arrangements, and the process and timelines of transitioning to an agreed long-term security sector architecture. These provisions would guide the design and implementation of DDR programmes that would typically precede SSR processes. However, over the past two decades, as conflict dynamics have changed, the United Nations is often involved in DDR and SSR processes in the absence of comprehensive peace agreements and while conflict is ongoing. The absence of comprehensive peace agreements is, in many cases, manifested by broad SSR and DDR provisions in peace agreements that are limited in scope and that leave out important questions on which parties often continue to disagree. Over the past decade, the United Nations has learned many lessons and developed new tools and approaches, including pre-DDR, to engage with the parties in the absence of political agreement on sensitive SSR/DDR topics and to support progress in dialogue while preparing the ground for future programmes and reforms.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "88ff1683-5477-4d11-a635-5fa6d1ba61f2", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 15, - "Paragraph": "6.2 Understanding the scope of integration through a political lens The peace agreement and/or subsequent negotiations will determine the quality and quantity of elements to be integrated into the security sector. Typically, these agreements are implemented over a long period of time and may be altered in the process. Hence, practitioners may need to advise relevant national authorities and actors/partners on practical questions of approach, sequencing and priorities, including gender-responsive elements of these, that the peace agreement would not have addressed in detail. The creation of a representative oversight body for integration, including male and female representatives of all former warring parties, should also be considered. It is, however, critical to highlight that the design and support to the integration process, including agreement on ranks and numbers for integration, must be considered in light of the evolving political process (and security landscape) and keeping in mind that ill-designed short-term projects and integration initiatives are likely to fail, undermine trust in the peace process and inflict lingering damage to the prospects for peace and security. Importantly, where national legal and regulatory frameworks pertaining to the security sector may need to be adjusted through further laws or decrees in line with provisions in the peace agreement, it is important to adequately reflect the issue of integration. Where negotiations are ongoing, laws may refer to the primacy of agreements reached by designated bodies and political processes. This should prevent a situation where legislation is used as an \u201cargument\u201d against integration.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "04f23991-ad54-4a4c-828b-23071f86224a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.3 Integrating gender in integrated DDR/SSR support Gender-transformative practices should begin as early as possible during the peace process to ensure representation of women and women\u2019s organizations in the national dialogue that feeds into negotiations. All participants in negotiations, as well as those crafting DDR and SSR provisions and frameworks, should be sensitized to the existence of, and prevention of, gender-based and sexual violence. Increasing the number of women in security sector institutions has been shown to increase their ability to effectively respond to sexual and gender-based violence. It is also important that the specific protection concerns for women integrating into the security sector be assessed and inform the training curriculum and rollout, infrastructure for staff facilities, and reporting within the security sector. Including women in peace processes at the decision-making level can broaden national ownership of post-conflict reforms, reinforcing the credibility of the process. This should also set the tone for a post\u2013peace process society that is sensitive to gender issues. Where possible, the peace agreement should outline specific provisions on the integration of both males and females into representative and inclusive security sector institutions. It is important to ensure there is not a tokenistic process for the inclusion of women; rather, these approaches should be implemented in a considered and systematic manner. For example, merely including one or more women on the negotiation team, or having one woman at the negotiating table, is not a substitute for ensuring women\u2019s meaningful engagement in peace and security, nor for conducting and utilizing systematic assessments of the security needs and concerns of women. Women and women\u2019s groups must also play a role in implementing peace agreements and in carrying out DDR and SSR processes, ensuring that women have equal opportunities to benefit from DDR/SSR, as appropriate to the situation and the role that they held during conflict. Gender-responsive budgeting throughout the DDR and SSR process should also be implemented in order to fully integrate women and ensure their needs are addressed in a sustainable manner. The capacities of women\u2019s groups should also be built, where necessary, so that they may be enabled to advertise opportunities to women and girls, address their mental and physical health needs, and provide them with other gender-responsive DDR/SSR opportunities.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "20619290-dba9-4fa8-9b9b-42c3931113ae", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.4 Registration of individuals joining the integration process DDR practitioners conduct the registration of former members of armed groups, including biometric registration, for the purpose of DDR programmes. Where appropriate and possible, DDR practitioners will undertake and/or be involved in the registration of eligible individuals who want to join the security sector through the DDR process. Also, where appropriate, the biometric registration process used during DDR programmes may be expanded to the security sector (see IDDRS 4.20 on Demobilization). During the registration process, DDR practitioners will collect basic information about the individuals, such as name, age, gender, profession, geographic origin, ethnicity, armed group affiliation, wartime activity, etc. The registration process, or the related counselling and referral questionnaires, may provide evidence of the total number of combatants interested in integration. It will also serve as an additional safeguard against including children in the integration process. Furthermore, where statutory security institutions are required by the peace agreement to submit numbers/profiles of security personnel, these numbers are unlikely to be accurate. SSR assessments and reform programmes that produce real numbers of security personnel, as reflected on the payroll, are typically undertaken at later stages of the SSR process, as they require a high level of cooperation and trust among parties and with international partners.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "66940411-076a-4258-809b-6796b7ce31e8", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.5 Vetting as a step in the integration process Vetting is the formal process of assessing suitability for public employment with a focus on individuals\u2019 human rights records. Former members of armed forces and groups who enter formal employment in the security sector shall be vetted. The vetting process will vary depending on the context and resources available to conduct it. It can range from a full vetting process \u2013 which reviews legal and financial records and collects statements from witnesses, etc. \u2013 to a lighter process suitable for the specific context, factoring in overall timelines and resources available. The vetting process is often the first step in determining eligibility to join the security sector. In a post-conflict situation, vetting for the purpose of integration will typically focus on the respect of human rights. Consequently, perpetrators of genocide, war crimes, crimes against humanity and/or gross human rights violations shall be excluded from the integration process and referred to the justice system. Similarly, DDR/SSR practitioners should be aware of a Member State\u2019s obligations under applicable sanctions regimes and the international counter-terrorism legal framework, including bringing terrorists to justice (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Former combatants who committed such crimes or violations are not likely to inspire the trust of the population. In particular, victims of abuse are unlikely to trust and rely on a public institution that hires individuals with serious integrity deficits, which would fundamentally impair the social contract. It is important to keep in mind that there is, in principle, no time limit on prosecuting serious crimes under international law and that individuals who may have passed vetting may be prosecuted and removed from the security sector at a later stage if evidence of such crimes comes to light.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ef9049fe-04b7-4e74-a438-66ec5e96c04d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.6 Vetting of former combatants against professional eligibility criteria If individuals pass the human rights/criminal-focused vetting process, they will be vetted against professional eligibility criteria for integration into the security sector. Those who are found to be ineligible based on professional criteria may receive DDR support to reintegrate back into civilian life in line with their overall eligibility for DDR. Typically, professional integration criteria will be determined during the peace process and may be part of the peace agreement or technical agreements reached at a later stage. They include criteria such as citizenship, language, minimum/maximum age, level of education, professional skills and experience, physical and mental aptitude, etc. It is important to keep in mind that integration is different from recruitment. Whereas integration is primarily a political process designed to address root causes of conflict and reduce structural risks within the security sector, recruitment is a purely technical human resources process. If discriminatory regulations or practices are used during mediation or during the implementation of the integration process to exclude minorities, including women, then SSR, DDR and political experts should work closely together to align messages and adapt support strategies to ensure more inclusive integration. Even where exclusionary agreements were reached during the mediation process, DDR/SSR practitioners and political/legal experts in the United Nations should carefully devise strategies to address these structural risks through programmes, legislative changes, national policies, etc. For example, if language was included as a criterion for integration but members of armed groups primarily speak a different language than the administrative/majority language, the United Nations may seek to amend this provision or seek an agreement whereby national authorities provide language training to former combatants who are otherwise eligible to be integrated.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "39a7ab9f-cf0d-4796-b934-8a78e2341961", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 17, - "Paragraph": "6.7 Recognizing risks during the design and execution of integration processes To avoid harm and support sustainable peace, it is essential that integration is put in the wider political and security context and with an understanding of its potential impact in the medium and long term. Integration has to be considered part of a sequenced rightsizing and restructuring process of the security sector. Integration and SSR should not be approached through a project lens, as even a perfectly successful project may ultimately lead to damaging outcomes. DDR and SSR practitioners should avoid contributing to the risks discussed below and actively work with national counterparts and partners to address them.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "0e5852ee-ecb8-44e5-824b-24a12b3d09b3", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.7.1 Neglecting the link between military and police integration and reform The military and police are typically the largest security institutions and therefore the main recipients of former combatants. It is important that integration into the security sector is not approached from the perspective of individual security agencies. The historical role and background of various security agencies is different in each context, and so is the role of these institutions in relation to conflict drivers. Moreover, an approach that looks only at security agencies without understanding the governance and economic dynamics in which they are embedded may entrench conflict drivers, exclusion and marginalization and pave the way for relapse into conflict. Therefore, understanding how integration affects the wider security governance architecture and political economy of the security sector is vital to designing conflict-sensitive and sustainable integration options.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "604437f3-85f8-41aa-a34d-b15010bf7bd2", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.7.2 Undermining the development of people-centred policing Where the military has been the main and dominant security force, and has been used to perform internal protection functions, armed groups may favour military integration, as it is linked to a higher social status and access to more resources and political influence. This may mean that only those not deemed \u201cqualified enough\u201d to join the military will be channeled to the police. As the stated objective of many post-conflict SSR processes is to strengthen people-centered policing, it is important that the integration process does not undermine this objective.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "090b804a-3e11-40ae-8403-89db8d0bb81e", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 18, - "Paragraph": "6.7.3 Contributing to a security vacuum Where traditionally the police service has been understaffed and underresourced, it may be necessary to staff the police with personnel, both men and women, who have the experience and skills to provide security effectively. This is particularly important when integration and reform are taking place in an environment where the security forces and the civilian population continue to face significant security threats, including from non-State armed groups. If former military personnel and/or special forces are integrated into the police service as a deliberate strategy, it is critical to accompany such integration with adequate training and enhanced capacity for civilian and judicial accountability mechanisms. Additionally, as part of the peace process, strategies for internal security services to take over security functions in the areas previously controlled by armed groups should be devised.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "68b81447-1264-416f-9e80-e599f9dd7398", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 18, - "Paragraph": "6.7.4 Increasing protection risks to communities Integration of armed groups into the security sector should also be considered in light of the planned modalities for their organization and deployments that will be determined as part of SSR strategies and plans. From the perspective of peaceful and diverse societies, it is preferable that integrated combatants are mixed up and deployed across the country, regardless of ethnic, religious and other political considerations. While this should be the aspiration for reform and integration, the reality may be that the deployment of certain individuals and groups may result in increased tensions and insecurity for local communities. Therefore, it is important to carefully consider possible unintended effects of integration and advise that the process is designed and executed in stages and adjusted when negative consequence are observed. Making everyone, including donors and partners, aware of these risks and agreeing on joint response and mitigation measures is a crucial step in the design and implementation of integration processes.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "661d9b67-92e1-43ec-9270-259438d0cb76", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "6.7.5 Integration as a political bargaining chip Integration, beyond serving to \u201cunite\u201d former adversaries into a single security apparatus, effectively also serves as a security guarantee and security power-sharing mechanism. The political aspects are particularly prominent in the number and rank of senior military positions assigned to former combatants, and also in the command and oversight functions assigned to politicians affiliated with the different warring camps, including regional and local administrators on whose territory security forces are or may in the future be deployed. A key component of successful integration is the clarity of the political agreement on senior appointments and civilian command and oversight functions. A pattern of defections/renegotiated entries into security forces (a \u201crevolving door\u201d syndrome) is a strong indication that a unified control and command chain is not present. This can present a serious risk to the peace process and a protection risk to civilians.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2290958f-dced-414f-9afa-c83aaad80157", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "7. DDR-related tools as an entry point and catalyst for SSR DDR-related tools are immediate and targeted measures that can be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR). Many DDR-related tools, such as community violence reduction (CVR) and transitional weapons and ammunition management (WAM), can contribute to a more people-centred approach to SSR. Although the precise linkages between a DDR programme and SSR will vary in different contexts, DDR practitioners should be aware of the need to plan for the following.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "933c5e0f-5d3d-46e2-9d99-65a1bb88258a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 19, - "Paragraph": "7.1 Transitional WAM and SSR Transitional WAM measures are implemented as part of a DDR process, either as stand-alone measures or as part of CVR programmes, and can complement top-down SSR programmes (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR-related transitional WAM may be implemented at the same time as the UN is providing support to SSR. The UN may support national authorities in the rightsizing of their armed forces. Such reforms include the need to adapt national arsenals to the size, needs and objectives of the security sector of the country in question. This requires an effective needs assessment, strategic planning, and the technical capacity and support to identify surplus or obsolete materiel and destroy it. When SSR is ongoing, DDR-related transitional WAM may be used as an entry point to align national WAM capacity with international WAM guidance and international and regional legal frameworks. For instance, storage facilities built or refurbished to store DDR materiel could then be used to house stockpiles for security institutions, and as a proof of concept for upgrading of facilities. All WAM activities shall be designed and implemented in line with international technical guidance, including MOSAIC Module 02.20 Small Arms and Light Weapons Control in the Context of Security Sector Reform and the International Ammunition Technical Guidelines.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "87ebf051-23e5-48d7-94be-625dd4b5aafd", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 19, - "Paragraph": "7.2 Weapons and ammunition integration While destruction shall be the preferred method of disposal of materiel collected during the disarmament phase of a DDR programme, national authorities may insist that serviceable materiel should be incorporated into national stockpiles. Before transferring arms and ammunition to national authorities, DDR practitioners shall take account all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek legal advice. If the national authority in question is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such materiel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy on UN support to non-UN security forces, materiel and other types of support that fall under the policy shall be transferred only after adequate risk assessments are done and mitigation measures for the identified risks are developed and implemented. Where there are substantial grounds to believe that there is a real risk that the intended recipient is committing grave violations of international humanitarian, human rights or refugee law, such support should not be provided. The potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles should be explained to national authorities. These consequences not only include the symbolic connotations of using conflict weapons, but also the costs and operational challenges that come with the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remarking of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and perceptions of such processes on women, men, boys and girls. In addition, women\u2019s roles in the conflict and within armed forces and groups may have given them specific knowledge of weapons caches and trafficking routes. For further guidance, see IDDRS 4.10 on Disarmament.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "d0484ef2-a90a-432f-9d5d-686ef1a1d73a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 20, - "Paragraph": "7.3 Integrated DDR and SSR assessments at the local level Many DDR-related tools, such as CVR and transitional WAM, are implemented at the local level and require local-level gender- and age-sensitive assessments. When CVR programmes and/or transitional WAM are planned alongside SSR, these local-level assessments should be considered alongside broader SSR assessments. For example, bottom-up weapons surveys can contribute to assessments concerning security threats and public perceptions of security. Furthermore, while SSR programmes require a threat assessment that may potentially include a public perception survey to determine the key security concerns of the population, CVR programmes require a comprehensive and gender-responsive baseline assessment of local violence dynamics as well as an assessment of the capacities, interests and strengths of the communities to engage in and support CVR. Furthermore, if different local assessments reveal similar patterns or trends, this may signal a systemic problem requiring effort to be channelled through more municipal or national reforms of the security sector. For further information on the assessments required for CVR and transitional WAM, see IDDRS 2.30 on Community Violence Reduction, IDDRS 5.10 on Women, Gender and DDR, and IDDRS 4.11 on Transitional Weapons and Ammunition Management.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "880bd3d1-154b-4443-bd32-adcd6ae8444f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 20, - "Paragraph": "7.4 Community violence reduction Where conditions for SSR and/or DDR are not present, support to local security arrangements should foster trust building with the statutory security sector and create entry points for SSR in the future. SSR processes can be a platform to recognize local security arrangements consisting of diverse actors as part of legitimate State authority and thus contribute to a more inclusive national security architecture that advances diversity and representation. In all of these cases, it is important to understand the distribution of political power and economic resources and to consider how SSR and DDR support options will impact this distribution. Although SSR is people centred, SSR policies and strategies are typically developed top-down. In contrast, CVR is a practical approach that focuses on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment, including recruitment of children (see IDDRS 2.30 on Community Violence Reduction). By drawing on these different vantage points, SSR and CVR programmes can be linked in mutually reinforcing ways.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "75016284-3de2-4912-ac42-13ba77d18f98", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "7.4.1 Concurrent SSR and CVR programming Concurrent programming should be mutually reinforcing. For example, awareness-raising campaigns on domestic violence and sexual and gender-based violence as part of a CVR programme can be combined with SSR programming initiatives such as legal reform relating to SGBV/domestic violence; capacity-building of security institutions in the area of gender and procedures for dealing with victims of SGBV; ensuring fair representation of men and women in security bodies; and leveraging the knowledge and skills of women for broader peace and security, including in supporting community security. To ensure that programmes are mutually sensitive, communication between the different programmes is important.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "04027f69-fc42-4e0a-bec2-4f7a5d00fa0f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "7.4.2 Sequential CVR and SSR programmes Where conditions for SSR don\u2019t exist, it may be helpful to start with local-level CVR programmes. Building local-level security initiatives as well as working with local/non-State security and justice actors can provide a basis for discussing reforms of the security institutions and foster the trust required to enhance governance where the State previously had no access.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "89fce011-453d-4ce0-a0a4-6d62933d2ce0", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 21, - "Paragraph": "8. Reintegration of former combatants into civilian life and linkages to SSR Reintegration support, which is designed to help individuals leave armed groups and rejoin civilian life, can be offered at different phases of the conflict but is most prominently linked to the implementation of peace and political agreements. In this context, reintegration support may be provided to members of armed forces and groups who are not eligible or able to join newly formed security institutions.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "744d1019-1bad-4d0c-b36b-58c61fd6dc35", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "8.1 Reintegration assistance for individuals found to be ineligible for integration against professional eligibility criteria In some contexts, the peace agreement in place may state that reintegration support should be provided to those who demobilize and return to civilian life (as part of a DDR programme), but also to those who apply for integration into the security sector but fail to meet the professional eligibility criteria. DDR practitioners should ensure that considerations for those who are ineligible for integration are factored into the assessments conducted as part of the planning for reintegration support (see IDDRS 4.30 on Reintegration, IDDRS 5.10 on Women, Gender and DDR, and IDDRS 5.20 on Children and DDR). In particular, DDR practitioners should ensure that the necessary preparations are in place and that sufficient funding is available to handle this additional caseload. Individuals who are excluded from integration because of serious crimes (see section 6.5) shall be referred to appropriate justice mechanisms and not offered reintegration support.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "13131cbb-deea-4a06-8e09-30a8625dcfdb", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "8.2 Reintegration programmes in support of government-led efforts to decommission security personnel following wartime military mobilization It is important to highlight that support may also be provided to serving security personnel who may be decommissioned from the security sector as part of a rightsizing process. Separation of serving security personnel is typically under the umbrella of the national SSR process and led by national institutions, and may include pensions, separation packages and/or other benefits in the framework of the national budget. However, following wartime military mobilization, States may take a reintegration support approach during and following wartime military mobilization to meet the needs and harness the capacities of the large numbers of men and women mobilized who will need assistance to transition into civilian life. Many will require reintegration assistance while conflict is still ongoing as a result of becoming unfit for service (e.g., because they have acquired a disability or psychosocial or mental health impairment). Decisions on adopting a reintegration support approach are guided by political strategies and informed by domestic fiscal realities. While the security sector in most contexts may be overly large and costly, it is often not possible to reduce its size in the immediate period following conflict. Also, a formal launch of \u201cdownsizing\u201d exercises may create unsustainable political pressures and increase insecurity in a fragile post-conflict environment.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "048b5293-eddc-447d-a588-76cb3011e3d3", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 22, - "Paragraph": "8.3 Reintegration assistance versus separation benefits and pensions Reintegration assistance should not be confused with pension schemes. Pensions are a long-term entitlement provided by the State, whereas reintegration support is provided for a finite, predetermined period of time, such as two to three years, through external financial assistance or the State budgets (see IDDRS 4.30 on Reintegration). SSR and DDR practitioners should pay special attention to the eligibility of women for pensions and/or disability benefits, as frequently they can be purposely or inadvertently left out of such processes because of strict criteria that do not recognize their specific roles in the conflict and their eligibility for such processes where the State has extended this eligibility (see IDDRS 5.80 on Disability-Inclusive DDR). While former members of armed groups are not typically eligible to receive separation benefits like those that may be provided to serving security personnel, a Government may decide to extend eligibility to them and/or to include other benefits as part of the peace agreement. In some cases, former combatants may receive such support from other State programmes as well as through the DDR programme. DDR practitioners should also be aware of relevant reintegration services that are available and be sure to factor them in their planning. They should also take into account how well these services are resourced to avoid tensions among eligible recipients. Where possible, public information campaigns accompanying DDR and SSR should help to make individuals aware of what they are eligible for (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR and IDDRS 5.10 on Women, Gender and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f1c30eb5-cb6a-4ac1-9e4d-104b7e5d8881", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": 22, - "Paragraph": "9. DDR, SSR and cross-cutting issues The topics and questions outlined in this module present issues that cut across DDR and SSR processes and link them in different ways. In addition to the topics outlined, there are considerations that are not specific to either SSR or DDR, but that should be considered in an integrated manner to manage risks and ensure the highest impact of UN and international support to SSR/DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "dc889e0e-0db5-4f5c-84f6-289c92615ebf", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "9.1 Adopting a national funding lens for DDR and SSR programmes DDR and SSR are expensive processes drawing on limited domestic and foreign funding. Traditionally, donors have invested solidly in DDR processes, as they were comprehensive and signaled a reliable transition from conflict to peace. As Governments and donors face growing demands for funding of development, humanitarian and security needs, it is crucial that SSR and DDR experts design programmes and strategies that can be sustained on realistic national budgets. Linking support to DDR and SSR to reforms and public finance including security sector planning, budgeting and financing can be a sign of commitment by national authorities to DDR and SSR processes (see also IDDRS 3.41 on DDR Budgeting and Financing). The incorporation of SSR/DDR commitments into national development funding frameworks is critical for ensuring the long-term commitment and progress on gains supported by the United Nations.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "42e4bc22-5a14-4772-8f49-722ba080f416", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023", - "PageNum": null, - "Paragraph": "9.2 Integrated approach to partnerships\t The landscape of international partners and donors for DDR and SSR has changed considerably over the past decade. More actors, often with differing approaches and priorities, may offer more support but may also pull in opposite directions and allow national stakeholders to shop for partners, thus avoiding difficult decisions and seeking support for short-term solutions that may undermine the DDR/SSR process. It is therefore critical that the United Nations takes an integrated approach to partnerships on SSR/DDR \u2013 ensuring joint strategic priorities and coordinated messaging and approaches to funding for DDR/SSR.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "5912a6ac-c995-4adc-a813-3eaac95c2b8e", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 1 1. Module scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 2 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 3 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 4 4.1 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 4 4.2 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 5 4.3 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 5 4.4 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 4.5 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 6 4.6 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.7 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026. 7 4.8 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026 7 5. Natural resources in conflict settings \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 8 5.1 Contributing to the causes of conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 8 5.2 Financing and sustaining conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026.. 9 5.3 Contributing to reconciliation and sustaining peace \u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026 11 6. DDR and natural resources: planning considerations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 12 6.1 Assessments and design \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 13 6.1.1 Natural resources and conflict linkages \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 14 6.1.2 Employment and livelihood opportunities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026.. 17 6.2 Specific-needs groups and cross-cutting issues \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026.. 19 6.2.1 Youth \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026.. 19 6.2.2 Women and girls \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 6.2.3 Persons with disabilities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 20 6.2.4 Health considerations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 20 6.2.5 Indigenous and tribal peoples and local communities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 21 6.3 Risk management and implementation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 21 7. DDR programmes and natural resources \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.. 24 7.1 Disarmament \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 24 7.2 Demobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026..26 7.2.1 Quick-impact projects in natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 26 7.2.2 Demining agricultural areas \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..27 7.2.3 Disposal and management of waste from conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 27 7.3 Reintegration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 29 7.3.1 Value chain approaches and community-based natural resource management \u2026\u2026..\u2026\u2026\u2026\u2026 31 7.3.2 Reintegration support and land rights \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026. 32 7.3.3 Reintegration support and agriculture and fisheries \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 33 7.3.4 Reintegration support and forestry and energy \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 35 7.3.5 Reintegration support and energy \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 36 7.3.6 Reintegration support and extractives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 37 7.3.7 Reintegration support and water management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 39 7.3.8 Reintegration support and waste management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 40 8. DDR-related tools and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 41 8.1 DDR support to mediation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 41 8.2 Transitional weapons and ammunition management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 41 8.3 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026. 42 8.4 Transitional security arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 42 9. Reintegration support and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 43 10. DDR, SSR and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 43 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 44 Annex B: Sample questions for specific needs analysis in regard to natural resources in DDR \u2026. 44 Annex C: Relevant frameworks and standards for natural resources in conflict settings \u2026\u2026\u2026\u2026. 46 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 52 6.30 DDR and Natural Resource Management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "615f54a7-cdbe-4641-90a4-1ada4b527793", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Summary The relationship between natural resources and armed conflict is well known and documented, evidenced by numerous examples from all over the world. Natural resources may be implicated all along the peace continuum, from contributing to grievances, to financing armed groups, to supporting livelihoods and recovery through their sound management. Furthermore, the economies of countries suffering from armed conflict are often marked by unsustainable or illicit trade in natural resources, thereby tying conflict areas to the rest of the world through global supply chains. For DDR processes to be effective, practitioners should consider both the risks and opportunities that natural resource management may pose to their efforts. As part of the war economy, natural resources may be exploited and traded directly by or through local communities under the auspices of armed groups, organized criminal groups or members of the security sector, and eventually be placed on national and international markets through trade with multinational companies. This pattern not only shores up the actors directly implicated in the conflict, but it also undermines the good governance of natural resources needed to support development and sustainable peace. Once conflict is underway, natural resources may be exploited to finance the acquisition of weapons and ammunition and to reinforce the war economy, linking armed groups and even the security sector to international markets and organized criminal groups. These dynamics are challenging to address through DDR processes, but should be contended with if sustainable peace is to be achieved. When DDR processes promote good governance practices, transparent policies and community engagement around natural resource management, they can simultaneously address conflict drivers and the impacts of armed conflict on the environment and host communities. Issues of land rights, equal access to natural resources for livelihoods, equitable distribution of their benefits, and sociocultural disparities may all underpin the drivers of conflict that motivate individuals and groups to take up arms. It is critical that DDR practitioners take these linkages into account to avoid exacerbating existing grievances or creating new conflicts, and to effectively use natural resource management to contribute to sustainable peace. This module aims to contribute to DDR processes that are grounded in a clear understanding of how natural resource management can contribute to sustainable peace and reduce the likelihood of a resurgence of conflict. It considers how DDR practitioners can integrate youth, women, persons with disabilities and other key specific needs groups when addressing natural resource management in reintegration. It also includes guidance on relevant issues related to natural resource management, including public health, disaster-risk reduction, resilience and climate change. With enhanced interagency cooperation, coordination and dialogue among relevant stakeholders working in DDR, natural resource management and governance sectors \u2013 especially national actors \u2013 these linkages can be addressed in a more conscious and deliberate manner for sustainable peace. Lastly, this module recognizes that the degree to which natural resources are incorporated into DDR processes will vary based on the political economy of a given context, resource availability, partners and capacity. While some contexts may have different agencies or stakeholders with expertise in natural resource management to inform context analyses, assessment processes, and subsequent programme design and implementation, DDR processes may also need to rely primarily on external experts and partners. However, limited natural resource management capacities within a DDR process should not discourage practitioners from capitalizing on the opportunities or guidance available, or from seeking collaboration and possible programme synergies with other partners that can offer natural resource management expertise. For example, in settings where the UN has no mission presence, such capacity and expertise may be found within the UN country team, civil society and/or academia.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2818cde1-191f-4b11-8dcf-00e1828fb870", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "1. Module scope and objectives This module provides DDR practitioners \u2013 in mission and non-mission settings \u2013 with necessary information on the linkages between natural resource management and integrated DDR processes during the various stages along the peace continuum. The guidance provided highlights the role of natural resources in all phases of the conflict cycle, focusing especially on the linkages with armed groups, the war economy, and the ways that natural resource management can support successful DDR processes. It also emphasizes the ways that natural resource management can support the additional goals of gender-responsive reconciliation, resilience to climate change, and sustainable reintegration through livelihoods and employment creation. The module highlights the risks and opportunities presented by natural resource management in an effort to improve the overall effectiveness and sustainability of DDR processes. It also seeks to support DDR practitioners in understanding the associated risks that threaten people\u2019s health, livelihoods, security and opportunities to build economic and environmental resilience against future crises.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "58e5dd38-a2de-42cd-8d2f-2a5831060bdf", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Natural resource management refers to activities related to the management of natural capital stocks, (monitoring, control, surveys, administration and actions for facilitating structural adjustments of the sectors concerned) and their exploitation (e.g., abstraction and harvesting). Natural resources are any natural assets (raw materials) occurring in nature that can be used for economic production or consumption. These may include, but are not limited to, hard commodities such as minerals, gemstones, petroleum resources, timber or other geological resources. They can also include soft commodities such as agricultural products like cocoa, palm oil, sugar, coffee, wheat and other highly traded global commodities. Natural resources can also include endangered rare species of flora and fauna (including those used in narcotics) and related products traded on global markets. Sustainable use of natural resources refers to the exploitation or management of natural resources in a way that ensures their long-term availability to support development for future generations. War economy refers to the economic structure developed to support armed conflict in a given jurisdiction, whether set up by the existing Government or an armed group. The war economy includes legal and illegal exploitation of natural resources with the aim of supporting one or more sides of a conflict.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "3e6befae-b78d-49a9-829d-4009585f619b", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 5, - "Paragraph": "3. Introduction When well-managed, natural resources have the potential to support sustainable peace and development, and to address long-standing grievances. However, there is also mounting evidence that in many violent conflicts worldwide a strong link exists between armed conflict and weak governance or mismanagement of natural resources, dynamics which also contribute to violent conflict. Over the past 60 years, at least 40 per cent of all intrastate conflicts were linked to natural resources. Furthermore, conflicts where natural resources are implicated have been shown to be more likely to relapse into violence within five years. Looking back over the history of UN peacekeeping operations, nearly 20 missions have been deployed to conflicts fuelled or financed by natural resources, yet only a few of these missions have had a direct mandate to tackle natural resource challenges. However, the United Nations recognizes the need to incorporate the environmental and natural resource dimensions of conflict and peacebuilding along the entire peace continuum, as evidenced in the UN Sustainable Development Cooperation Framework, the Humanitarian Response Plan and/or the Integrated Strategic Framework across multiple settings. Although risks exist, natural resource management also has the potential to enable sustainable peace, including through sustainable development that contributes to job creation, reduced grievances and equitable sharing of benefits from natural resources. Through sound management, individuals and societies can employ natural resources in ways that secure livelihoods, generate tax revenues, stimulate exports and engage the private sector in employment creation. Furthermore, natural resource management provides both temporary (Track A) and more sustainable (Track B) employment opportunities, as outlined in the United Nations Post Conflict Policy for Employment Creation, Income Generation and Reintegration. In DDR contexts where strong governance is present, policy processes may specifically target natural resource sectors \u2013 including forestry, mining and conservation \u2013 to support job creation for long-term sustainable peace. Since natural resources underpin livelihoods for most populations in post-conflict contexts, DDR practitioners should analyse any ways in which special-needs groups \u2013women, youth, persons with disabilities or different vulnerable populations \u2013 can safely access and productively use natural resources. Gender issues, in particular, are crucial for sustainability and efficiency in economic recovery when it comes to natural resource management, as gender norms in society can affect the division of labour between men and women and the distribution of capital assets, including land, credit, skills and participation in decision-making, often negatively impacting women. Gender can also impact whether natural resources can be accessed and used safely; for example, the provisioning of essential natural resources for daily subsistence by women and girls, such as gathering firewood or charcoal, often puts them at risk for sexual and gender-based violence. In other cases, the physical strength needed to work in natural resource management sectors can prohibit women from accessing these kinds of economic opportunities (e.g., certain roles in forestry or mining). In addition to their economic benefits, natural resources can play an important role in supporting successful social reintegration and reconciliation through community-based approaches to natural resource management, including promoting access to grievance- and dispute-resolution mechanisms. To ensure that growth in natural resource management sectors will contribute positively to peace efforts, DDR practitioners shall undertake all necessary efforts to understand the risks and opportunities and fully analyse and incorporate them into process planning, design and implementation. The linkages between organized criminal groups, armed forces and groups, and illicit trade \u2013 including their impact on local community actors \u2013 should also be taken into account. These include the potential for poor natural resource management, coupled with weak governance, to lead to further grievances and recruitment. Since natural resource management takes place at the local, regional and national levels, there are multiple opportunities to work cooperatively with relevant stakeholders during DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0712082c-8731-437a-b7bd-70d72381f7b5", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 6, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and natural resource management.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8ba8492f-ca6b-421e-9b42-dd0974440c6f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.1 People centred Natural resources can be used to support or to undermine development and sustainable peace. Ultimately, natural resources are part of the naturally protected rights of the citizens of any sovereign nation, and DDR practitioners must seek to protect and respect these rights in accordance with relevant international and national laws and policies (including customary law). In particular, DDR practitioners shall seek advice from human rights officers, experts on rule of law and experts on natural resource management, especially if the land and other rights of indigenous or otherwise marginalized communities are potentially affected.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "f0cf2eed-8d15-4d06-b8a5-0d0152a12cad", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 6, - "Paragraph": "4.2 Gender responsive and inclusive Equitable participation and access to natural resource\u2013related opportunities and benefits shall be ensured for women, men, girls and boys, regardless of their ethnicity, sexual orientation and other intersecting factors. For DDR practitioners, a special emphasis should be placed on helping to secure tenure and access to land and other resources within existing or proposed frameworks for women and girls, since this is shown to be key to their successful reintegration, as well as on providing both male and female DDR participants and beneficiaries with equitable access to economic reintegration opportunities in natural resource management sectors. As part of DDR assessments, a specific gender analysis \u2013 carried out in consultation with female and male participants and community members in their preferred language \u2013 should be undertaken to map the gender-specific roles and responsibilities in natural resource management and gender division of labour as well as associated risks and protection concerns. Based on the analysis, DDR practitioners shall promote the equal participation and decision-making opportunities of female and male participants and beneficiaries in natural resource management.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "251190bb-3b35-41f3-97d2-e30165c51a95", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 7, - "Paragraph": "4.3 Conflict sensitive As outlined in IDDRS 2.10, \u2018do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In the case of natural resources, DDR practitioners shall ensure that they are not implementing or encouraging practices that will threaten the long-term sustainability of natural resources and the livelihoods that depend on them. Further, they should ensure that they will not contribute to potential environment-related health problems for affected populations; this is particularly important when considering water resources, land allocation and increase in demand for natural resources by development programmes or aid groups (such as increased demand for charcoal, timber, etc., without proper management measures in place). Finally, DDR practitioners should approach natural resource issues with sensitivity to ensure that interventions do not exacerbate conflict or grievances around natural resources or other existing community tensions (such as those based on ethnic, religious, racial or other dimensions), do not contribute to any environmental damage, and are equipped to deal with potential tensions related to natural resource management. In particular, sectors targeted by reintegration programmes should be carefully analysed to ensure that interventions will not cause further grievances or aggravate existing tensions between communities; this may include encouraging the establishment of grievance- and dispute-resolution mechanisms.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6976da6f-c12f-4082-afd7-bcf31f0db432", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.4 Context specific DDR processes shall be context specific to reflect both the nature of the conflict and the role of natural resources in the conflict, taking into account the national, regional and global implications of any activities. The specific role of natural resources should be considered in each context by DDR practitioners, including where natural resources are part of underlying grievances, or where they are being exploited directly by armed forces, armed groups or organized criminal groups \u2013 or by local communities under the auspices of these actors \u2013 to control territories or finance the purchase of weapons and ammunition. DDR practitioners should also consult any civil society organizations, academic institutions and other experts that may be available at the local level to inform interventions. Local experts may be included in assessments of all types of local institutions, armed groups, organized criminal groups, and political activities, as well as in the development and implementation of DDR processes. Where possible and appropriate, DDR processes should seek to adopt livelihoods strategies and employment-generation opportunities that respect human rights and the rights of indigenous peoples and local communities; promote sound natural resource management, participatory decision-making and conflict sensitivity; and do not exploit natural resources at unsustainable rates. DDR practitioners should focus on promoting sustainable livelihoods and consider incorporating environmental feasibility studies for any projects based on natural resource exploitation. They should also ensure that post-project impact monitoring and evaluation include the environment, natural resources and ecosystem services, especially where the latter relates to disaster-risk reduction and resilience in the face of climate change.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b8872892-c702-47a3-8088-e83a4db0b086", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.5 Flexible, accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Whether in a conflict setting or not, the State and any regional law enforcement authorities have the responsibility to implement any criminal justice measures related to the illegal exploitation and/or trafficking of natural resources, including instances of scorched-earth policies or other violations of humanitarian or human rights law. DDR practitioners shall also take into account any international or regional sanctions regimes in place against the export of natural resources. When the State itself is directly involved in these activities, DDR practitioners must be aware and factor this risk into interventions.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "247b81e5-b3e3-4e95-9a60-ea856029458a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.6 Nationally and locally owned Every context is unique when it comes to natural resource management, depending on the characteristics of local ecosystems and existing sociocultural relationships to land and other natural resources. The strength of local and national governance can also impact how natural resources may be treated by DDR processes. Specifically, a weak State can invite illicit exploitation and trafficking of natural resources in ways that may fuel or exacerbate armed conflict. DDR practitioners should ensure that they thoroughly understand these dynamics through assessments and risk management efforts when designing interventions. For DDR processes, local communities and national institutions \u2013 including relevant line ministries \u2013 are sources of critical knowledge and information. For this reason, DDR processes shall explicitly incorporate national and local civil society organizations, academic institutions, and private-sector and other stakeholders into intervention planning and implementation where appropriate. Since international mandates and resources for DDR processes are limited, DDR practitioners shall seek to build local capacities around natural resource management whenever possible and shall establish relevant local partnerships to ensure coordination and technical capacities are available for the implementation of any interventions incorporating natural resource management. In some cases, natural resource management can be used as a platform for reconciliation and trust building between communities and even regional actors. DDR practitioners should seek to identify these opportunities where they exist and integrate them into interventions.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7350afd5-816c-47a0-a9f2-f2782f993380", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.7 Regionally supported In cases where natural resources are exploited and trafficked to finance the activities of armed forces and groups or organized criminal groups active in conflict settings, regional dynamics may be at play. Private-sector and government actors from neighbouring States may be implicated in the trade of natural resources, and DDR practitioners should engage these stakeholders as much as possible to control for these risks and to identify opportunities to create a regional environment conducive to sustainable peace.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "60f412ea-0cce-43cb-aa1b-9c9b0aca9eb9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 9, - "Paragraph": "4.8 Integrated DDR processes will be more successful when considerations related to natural resource management are integrated from the earliest assessment phase through all stages of strategy development, planning and implementation. Expertise within the UN system and interagency partners should inform the interventions of DDR processes, in tandem with local and national expertise and knowledge.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f2757409-c5a4-4cdd-b11d-4d82b8da789a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5. Natural resources in conflict settings In contexts with poor governance, weak diversification and poor sectoral linkages, natural resources may be exploited to sustain the political and military agendas of armed forces and/or other groups. This dynamic contributes to a broader war economy that may incentivize unsustainable exploitation, resource grabs and human rights abuses that may be related, although not exclusively, to the environment and natural resources. When captured by armed forces and groups or organized criminal groups, high-value commodity sectors with significant global demand - such as minerals, oil and gas, timber and other agricultural commodities - represent a serious threat to peace, security and development. These commodities may include charcoal, timber, ivory, gems and minerals, as well as agricultural commodities like cocoa and palm oil. This trade links conflict actors to the global economy and ultimately to the end consumer of the good or service, thereby implicating a multitude of stakeholders, from the local private sector to regional and global multinational enterprises and their investors. The exploitation of natural resources and associated environmental stresses, such as the contamination of soil, air or water during extraction processes, can impact all phases of the conflict cycle, from contributing to the outbreak and perpetuation of violence to undermining prospects for peace. In addition, the environment itself may be damaged through scorched-earth tactics in order to harm specific groups of people or to render land and areas unusable by opposing groups. In extreme cases, land can also be damaged when communities are significantly displaced, and populations may be forced to degrade the natural resource base to survive. This environmental damage, coupled with the collapse of institutions and governance practices, can threaten people\u2019s health and livelihoods and undermine security. It may also undermine a country\u2019s capacity to achieve the 2030 Agenda for Sustainable Development, and exacerbate vulnerabilities to climate change and natural disasters. Identifying the role of natural resources in armed conflict is a necessary starting point for effectively addressing the factors that may have caused or sustained conflict, could trigger a relapse into violence, or may impede the process of consolidating sustainable peace. Analyses and assessments on environmental and natural resource issues can help DDR practitioners to identify the ways in which natural resources are intentionally and/or inadvertently utilized, exploited, depleted and destroyed as part of conflict. While the UN has increasingly adopted guidance on integrating natural resource considerations into its peacebuilding assessments and interventions, in practice, natural resources are still too often considered \u2018too hard to fix\u2019 and viewed as an issue to be addressed at a later stage in the recovery or peacebuilding process. However, these perspectives fail to take into account the broad and changing nature of threats to national and international security, as well as opportunities for natural resource management to contribute to sustainable peace. Integrating natural resource management issues into peacebuilding \u2013 and DDR in particular \u2013 should be seen as a security imperative, given the strong linkages between natural resources and conflict. Deferred action or uninformed choices made early on often establish unsustainable trajectories of recovery that can undermine long-term peace and stability. At the same time, natural resource management offers important opportunities for sustainable livelihoods recovery, employment creation and reconciliation. The following sections provide a frame of reference to support the improved consideration of natural resources in DDR processes. To apply this frame, DDR practitioners should seek appropriate expertise and work across various national and international agencies to gather the information related to natural resources needed to inform interventions. The relationship between natural resources, the environment and conflict is multidimensional and complex, but three principal pathways can be drawn. These pathways are described in more detail in the following sections.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5670a339-a4bd-4234-93d6-4c15bdcc5718", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 10, - "Paragraph": "5.1 Contributing to the causes of conflict Natural resources underpin livelihoods and the sociocultural rights of peoples in many parts of the world. When access to these resources is disrupted \u2013 especially where long-standing historic grievances (real or perceived) over access to land and resources are present \u2013 natural resources may be more easily exploited to encourage recruitment by armed groups. This relationship can be complex, but there is evidence in the historical record of how access to land or other natural resources can motivate parties to a conflict. Grievances related to land (communal or individually owned) and access to resources can be deeply embedded in the historical narrative of peoples and hugely motivating for individuals and groups to participate in violent conflict. These dynamics are critical for DDR practitioners to understand and to factor into planning. Natural resources can also contribute to the causes of conflict where their governance and management have privileged certain social or ethnic groups over others. Marginalized groups, excluded from access to natural resources and related benefits, may be more inclined to participate in the illicit or informal economy where armed conflict is present, thereby potentially engaging in livelihoods sectors less protected by labour regulations. They may also be more likely to participate in the activities of organized criminal groups involved in the exploitation of natural resources. These dynamics can further undermine the ability of the Government to provide benefits (i.e., education, health care and development) and resources to communities due to a loss of tax revenue from formal economic sectors, and can create the right conditions for illicit trade in weapons, ammunition and other illicit goods. This combination of factors can increase the likelihood that additional resentments will build and fuel recruitment into armed forces and groups. Finally, in some cases, scorched earth tactics may be used to gain control of a particular territory, resulting in significant displacement of populations and permanent damage to the environment. To secure a strategic advantage, demoralize local populations or subdue resistance, leaders and members of armed forces and groups may pollute water wells, burn crops, cut down forests, poison soils and kill domestic animals. In some cases, entire ecosystems have been deliberately targeted to achieve political and military goals. These tactics can result in grievances that ultimately undermine DDR processes and sustainable peace, and limit the positive role that natural resource management can play in sustaining peace.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "852f8e4c-8080-4b5e-a5f6-d6f79c37b980", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 10, - "Paragraph": "5.2 Financing and sustaining conflict Once armed conflict is under way, natural resources are often targeted by armed forces and groups, as well as organized criminal groups, to trade for revenues or weapons and ammunition. These resources may be used to finance the activities of armed forces and groups, including their ability to compensate recruits, purchase weapons and ammunition, acquire materials necessary for transportation or control of strategic territories, and even expand territorial control. The exploitation of natural resources in conflict contexts is also closely linked to corruption and weak governance, where Government, organized criminal groups, the private sector, and armed forces and groups become interdependent through the licit or illicit revenue and trade flows that natural resources provide. In this way, armed groups and organized criminal groups can even capture the role of Government and integrate themselves into political processes by leveraging their influence over trade and access to markets and associated revenues (see IDDRS 6.40 on DDR and Organized Crime). In addition to capturing the market for natural resources, the financing of weapons and ammunition may permit armed forces and groups to coerce or force communities to abandon their lands and territories, depriving them of livelihoods resources such as livestock or crops. Hostile takeovers of land can also target valuable natural resources for the purpose of taxing their local trade routes or gaining access to markets and/or licit or illicit commodity flows associated with those resources. This is especially true in contexts of weak governance. Conflict contexts with weak governance are ripe for the proliferation of organized criminal groups and capture of revenues from the exploitation and trade of natural resources. However, this is only possible where there are market actors willing to purchase these resources and to engage in trade with armed forces and groups. This relationship may be further complicated on the ground by the various actors involved in markets and trade, which could include government authorities in customs and border protection, shell companies created to distort the paper trail around this trade and subvert efforts at traceability by markets further downstream (i.e., closer to the end consumer), or direct involvement of Governments surrounding the country experiencing violent conflict to facilitate this trade. In these cases, the private sector at the local and national levels, as well as buyers in international markets, may be implicated, whether the resources are legally or illegally traded. The relationship between the private sector and armed forces and groups in conflict is complex and can involve trade, arms and financial flows that may or may not be addressed by sanctions regimes, national and international regulations, or other measures. Tracing conflict resources in global supply chains is inherently difficult; these materials may be one of hundreds that are part of a product purchased by an end user and may be traded through dozens of markets and jurisdictions before they end up in a manufacturing process, allowing multiple opportunities for the laundering of resources through fake certificates in the chain of custody. Consumer goods companies find the traceability of materials to a point of origin challenging in the best of circumstances; the complexities of a war economy and outbreak of violent conflict make this even more complicated. However, technologies developed in recent years \u2013 including chemical markers, radio-frequency identification tags and QR codes \u2013 are growing more and more reliable, and the manufacturers, brands and retailers who sell products that contain conflict resources are increasingly subject to legal regimes that address these issues, depending on where they are domiciled. Worldwide, legal regimes that address conflict resources in global supply chains are still nascent, but awareness of these issues is growing in consumer markets, and technological solutions to traceability and company due diligence challenges are rapidly emerging. Many groups are working to track the trade in conflict resources, and DDR practitioners can collaborate with them to ensure they are able to identify critical changes and shifts in the activities, tactics and potential resource flows of armed forces and groups. DDR practitioners should seek out these resources and engage these stakeholders to support assessments and the design and implementation of DDR processes whenever appropriate and possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "44e5d7a2-9613-4a34-847a-d36f3d5424ae", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.3 Contributing to reconciliation and sustaining peace Governance institutions and state authorities, including those critical to accountability and transparency, may have been eroded by conflict or weak to start with. When tensions flare and lead to armed conflict, rule of law breaks down and the resulting institutional vacuum can lead to a culture of impunity and corruption. This collapse of governance structures contributes directly to widespread institutional failures in all sectors, allowing opportunistic individuals, organized criminal groups, armed groups and/or private entities to establish uncontrolled systems of resource exploitation. At the same time, public finances are often diverted for military purposes, resulting in the decay of, or lack of investment in, water, waste management and energy services, with corresponding health and environmental contamination risks. During a DDR process, the success and the long-term sustainability of natural resource\u2013based interventions will largely depend on whether there is a good, functioning governance structure at the local, subregional, national or regional level. The effective and inclusive governance of natural resources and the environment should be viewed as an investment in conflict prevention within peacebuilding and development processes. Where past activities violate national laws, it is up to the State to exercise its jurisdiction, but egregious crimes constituting gross violations of human rights, as often seen with scorched earth tactics, oblige DDR processes to exclude any individuals associated with these events from participating (see IDDRS 2.11 on The Legal Framework for UN DDR). However, there may be other jurisdictions where multinational private entities can be targeted and pressured or prosecuted to cut their ties with armed forces and organized criminal groups in conflict areas. Sanctions set by the UN Security Council may also be brought to bear where they cover natural resources that are trafficked or traded by private-sector entities and armed forces and groups. DDR practitioners will not be able to influence, control or focus upon all aspects of natural resource governance. However, through careful attention to risk factors in the planning, design and implementation of natural resource\u2013based activities, DDR processes can play a multifaceted and pivotal role in paving the way for good natural resource governance that supports sustainable peace and development. Moreover, DDR practitioners can ensure that access to grievance- and non-violent dispute-resolution mechanisms are available for participants, beneficiaries and others implicated in the DDR process, to mitigate the risks that natural resources pose for conflict relapse. Furthermore, environmental issues and protection of natural resources can serve as effective platforms or catalysts for enhancing dialogue, building confidence, exploiting shared interests, and broadening cooperation and reconciliation between ex-combatants and their communities, between communities, between communities and the State, and between States. People and cultures are closely tied to the environment in which they live and to the natural resources upon which they depend. In addition to their economic benefits, natural resources and ecosystem services can support successful social reintegration and reconciliation. In this sense, the management of natural resources can be a tool for engaging community members to work together, to revive and strengthen traditional natural resource management techniques that may have been lost during the conflict, and to encourage cooperation towards a shared goal, between and among communities and between communities and the State. In settings where natural resources have played a significant role in the conflict, DDR practitioners should explore opportunities for addressing underlying grievances by promoting equitable and fair access to natural resources, including for women, youth and participants with disabilities. Access to natural resources, especially land, often carries significant importance for ex-combatants during reintegration, particularly for female ex-combatants and women associated with armed forces and groups. Whether the communities are their places of origin or are new to them, ensuring that they have access to land will be important in establishing their social status and ensuring that they have access to basic resources for livelihoods. In rural areas, it is essential that DDR practitioners recognize the connection between land and social identity, especially for young men, who often have few alternatives for establishing their place in society, and for women, who are often responsible for food security and extremely vulnerable to exclusion from or lack of access to land. To support social reintegration and reconciliation, as well as to enhance peacebuilding, DDR practitioners should seek to support reintegration activities that empower communities affected by natural resource issues, applying community-based natural resource management (CBNRM) approaches where applicable and promoting inclusive approaches to natural resource management. Ensuring that specific needs groups such as women and youth receive equitable access to and opportunities in natural resource sectors is especially important, as they are essential to ensuring that peacebuilding interventions are sustainable in the long term.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "68baf8b5-ac4c-4399-9899-cab1ab041c16", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 13, - "Paragraph": "6. DDR and natural resources: planning considerations At the outset, there are several key risk factors to consider when looking to leverage natural resources to support DDR processes. Depending on where DDR practitioners are working along the peace continuum, the following are three key areas where risks and opportunities should be considered: Supporting economic recovery: When natural resources are properly governed and carefully managed, \u2018high-value\u2019 resources (such as hydrocarbons, minerals, metals, stones and export timber) can form an important basis for employment creation and budget revenue for development. With close attention to whether a robust framework is in place with respect to land rights, and subsurface natural resource rights as a pre-cursor, engagement with private-sector entities can help to facilitate these types of opportunities, whether for high-value natural resources or agricultural commodities with significant market value such as coffee, cocoa, grains and other soft commodities. The risk, however, is that the pressure to kick-start development and earn foreign exchange can lead to rapid, uncontrolled exploitation of such resources at suboptimal prices, without due attention to land and subsurface resource rights, environmental sustainability, employment creation and the equitable distribution of revenues. When the benefits are not shared, or when exploitation results in environmental degradation, the potential for conflict to resume is high. Developing sustainable livelihoods for peace: Sustainable peace fundamentally hinges on the development of sustainable livelihoods, the provision of basic services, and the recovery and sound management (including equitable distribution of related benefits) of the natural resource base. Environmental damage caused by conflicts, coping strategies and chronic environmental problems (including climate change impacts) that undermine livelihoods must therefore be addressed from the outset. Minimizing vulnerability to natural hazards and climate change through the management of key natural resources and the introduction of appropriate technologies may also be addressed. Women and children are often disproportionately affected by environmental contamination economically and socially, as well as in terms of their health and well-being. DDR practitioners should therefore seek to address the specific needs of women and children in relation to their dependence on natural resources and risks involved. Careful coordination and attention to issues of land access, tenure and the availability of agricultural inputs and access to financing are critical elements for ensuring success and sustainability. Women, especially those who are unmarried, who are not closely associated with a male relative, or who face stigma or discrimination due to other circumstances (sexual violence survivors, single mothers, etc.) are often disadvantaged in their access to capital assets, as women\u2019s ownership rights are frequently based on de facto agreements among male community members and traditional gender roles may prevent women and girls from accessing education and capacity-building. Contributing to dialogue, reconciliation and confidence building: Natural resources can be a neutral entry point or a catalyst for enhancing dialogue, building confidence, exploring shared interests and broadening cooperation between divided communities as well as within and between States. Such actions should aim to use an inclusive approach that seeks to consider and respond to the needs of the entire population, especially women and youth. Bringing communities together to discuss and resolve common challenges and concerns, such as access to water points and grazing lands, can be a powerful peacebuilding tool and can help to mitigate the risk of further conflict between groups competing for natural resources.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "9c0676d9-d077-4fb6-9529-72ed5065fcce", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 14, - "Paragraph": "6.1 Assessments and design During the pre-planning and preparatory assistance phase, DDR practitioners should clarify the role natural resources may have played in contributing to the causes of conflict, if any, and determine whether DDR is an appropriate response or whether other types of interventions could be employed. In line with IDDRS 3.11 on Integrated Assessments, DDR practitioners should factor the linkage between natural resources and armed forces and groups, as well as organized criminal groups, into baseline assessments, programme design and exit strategies. This includes identifying the key natural resources involved, in addition to key individuals, armed forces and groups, any known organized criminal groups and/or Governments who may have used (or continue to use) these particular resources to finance or sustain conflict or undermine peace. The analysis should also consider gender, disability and other intersectional considerations by examining the sex- and age-disaggregated impacts of natural resource conflicts or grievances on female ex-combatants and women associated with armed forces and groups. The assessments should seek to achieve two main objectives and will form the basis for risk management. First, they should determine the role that natural resources have played in contributing to the outbreak of conflict (i.e., through grievances or other factors), how they have been used to finance conflict, and how natural resources that are essential for livelihoods may have been degraded or damaged due to the conflict or become a security factor (i.e. for women and girls, but also boys and men) at a community level. Second, they should seek to anticipate any potential conflicts or relapses into conflict that could occur as a result of unresolved or newly aggravated grievances, competition or disputes over natural resources, continued war economy dynamics, and the risk of former combatants joining ranks with criminal networks to continue exploiting natural resources. Such assessments require working closely with national actors through coordinated interagency processes. Once these elements have been identified, and the potential consequences of such analysis are fully understood, DDR practitioners can seek to explicitly address them. Where appropriate, DDR practitioners should ensure that assessment activities include input from technical experts on land and natural resources. These technical experts should also display expertise in recognizing the social, psychological and economic livelihoods issues connected to natural resources to be able to properly inform programme design. The participation of local civil society organizations and groups with knowledge on natural resources will also aid in the formation of a holistic perspective during the assessment phase. In addition, special attention should be given to gathering relevant information on issues of access to land (both individually owned and communal), water and other natural resources, especially for women and youth. Land governance and tenure issues \u2013 including around subsurface resource rights \u2013 are likely to crop up in almost every context where DDR processes are implemented. DDR practitioners should identify existing efforts and potential partners working on issues of land governance and tenure and use this as a starting point for assessments to identify the risk and opportunities associated with related natural resources. Land governance will underpin all other natural resource sectors and should be a key element of any assessment carried out when planning DDR. While DDR processes cannot directly overcome challenges related to land governance, DDR practitioners should be aware of the risk and opportunities that current land governance issues present and do their best to mitigate these through planning and implementation.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d5b24504-9407-4908-8519-ac8e13796d84", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 15, - "Paragraph": "6.1.1 Natural resources and conflict linkages To determine if natural resources have played (or continue to play) a critical role in armed conflict, assessments should seek to understand the key actors in the conflict and their linkages to natural resources (see Table 1). Assessments should also identify: Key financial and strategic benefits and drawbacks of the identified resources on all warring parties and civilian populations affected by the conflict. The nature and extent of grievances over the identified natural resources (real and perceived), if any. The location of implicated resources and overlap with territories under the control of armed forces and groups. The role of sanctions in deterring illegal exploitation of natural resources. The extent and type of resource depletion and environmental damage caused by mismanagement of natural resources during the conflict. Displacement of local populations and their potential loss of access to natural resources. Cross-border activities involving natural resources. Linkages to organized criminal groups (see IDDRS 6.40 on DDR and Organized Crime). Linkages to armed groups designated as terrorist organizations (see IDDRS 6.50 on DDR and Armed Groups Designated as Terrorist Organizations). The various actors in the conflict and their relationship with natural resources. TABLE 1. LINKAGES of key actors TO NATURAL RESOURCES DURING ARMED CONFLICT The results of these assessments and the natural resource sectors targeted should indicate which planning and implementation partners will be required. A diverse range of partners should be sought, including those from local civil society as well as those working in and with the private sector. When planning and implementation partners have been identified, DDR practitioners should ensure that there are dedicated resources for a knowledge management focal point to track natural resource management, gender and other cross-cutting themes. Many DDR processes already use natural resource management in community violence reduction (CVR) or reintegration efforts. Without recognizing the potential risks and adopting adequate safeguards, DDR processes could have negative impacts on natural resources. See section 6.3 for information on how to recognize and mitigate these risks.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a4dc8e83-7ee4-4e6c-89bb-5daaaf5a7d63", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.1.2 Employment and livelihood opportunities DDR practitioners planning the implementation of employment and livelihoods programmes \u2013 for example, as part of a CVR or DDR programme \u2013 should also seek to gather information on the risks and opportunities associated with natural resources. For example, questions concerning natural resources should be integrated into the profiling questionnaires administered during the demobilization component of a DDR programme (see Box 2). These questionnaires seek to identify the specific needs and ambitions of ex-combatants and persons formerly associated with armed forces and groups (for further information on profiling, see section 6.3 in IDDRS 4.20 on Demobilization). Questions related to natural resources should also be included in assessments conducted for the purpose of designing reintegration programmes. For sample questions, see Table 2, and, for further information on reintegration assessments, see section 7 in IDDRS 4.30 on Reintegration. Many of these sample questions may also be relevant for the design of CVR programmes (see IDDRS 2.30 on Community Violence Reduction). At a minimum, assessments focused on natural resources and employment and livelihood opportunities should encompass the demand for natural resources and any derived products in local, regional, national and international markets. They should also examine existing and planned private-sector activity in natural resource sectors. Assessments should also consider whether any areas environmentally degraded or damaged as a result of the conflict can be rehabilitated and strengthened through quick-impact projects (see section 7.2.1). DDR practitioners should seek to incorporate information gathered in Strategic Environmental Assessments and Environmental and Social Impact Assessments where appropriate and possible, to avoid unnecessary duplication of efforts. The data collected can also be used to identify potential reconciliation and conflict resolution activities around natural resources. These activities may, for example, be included in the design of reintegration programmes.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "4364f618-7c9b-444b-b9e4-5cc35525768b", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2 Specific-needs groups and cross-cutting issues To appropriately address the needs of all DDR participants and beneficiaries, a thorough analysis of groups with specific needs in natural resource management should be carried out as part of general DDR assessments. These considerations should then be mainstreamed throughout design and implementation. Specific-needs groups often include women and girls, youth, persons with disabilities and chronic illnesses, and indigenous and tribal peoples and local communities, but other vulnerabilities might also exist in different DDR contexts. Annex B presents a non-exhaustive list of questions that can be incorporated into DDR assessments pertaining to specific-needs groups and natural resource management.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9d505a6d-df02-4efa-a79a-beb3b102d297", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2.1 Youth Many conflict-affected countries have substantial numbers of youth \u2013 individuals between 15 and 24 years of age \u2013 relative to the rest of the population. Natural resources can offer specific opportunities for this group. For example, when following a value chain approach (see section 7.3.1) with agricultural products, non-timber forest products or fisheries, DDR practitioners should seek to identify processing stages that can be completed by youth with little work experience or skills. Habitat and ecosystem services restoration can also offer opportunities for young people. Youth can also be targeted as leaders through training-of-trainers programmes to further disseminate best practices and skills for improving the use of natural resources. When embarking on youth-focused DDR processes, efforts should be made to engage both male and female youth. While male youth are often the more visible group in conflict-affected countries, there are proven peace dividends in providing support to female youth. For additional guidance, see IDDRS 5.30 on Youth and DDR.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "1aa32b9e-af53-4b5e-8d0a-6db5699446f6", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2.2 Women and girls Women and girls often directly manage communal natural resources for their livelihoods and provide for the food security of their families (e.g., through the direct cultivation of land and the collection of water, fodder, herbs, firewood, etc.). However, they often lack tenure or official rights to the natural resources they rely on, or may have access to communal resources that are not recognized (or upheld if they are recognized) in local or national laws. DDR practitioners should pay special attention to ensuring that women are able to access natural resources, especially in situations where this access is restricted due to lack of support from a male relative. In rural areas, this is especially crucial for access to land, which can provide the basis for women\u2019s livelihoods and often determines their ability to access credit and take out loans. For example, where DDR processes link to land titling, they should encourage shared titling between male and female heads of households. In addition, DDR practitioners should ensure that employment opportunities and necessary skills training are available for girls and women in natural resource sectors, including non-traditional women\u2019s jobs. Moreover, DDR practitioners should ensure that women are part of any decision-making processes related to natural resources and that their voices are heard in planning, programmatic decisions and prioritization of policy. In cases where accessing natural resources for livelihoods has put women and girls at higher risk of sexual and gender-based violence, special care must be taken to establish safe and secure access to these resources, or a safe and secure alternative. Awareness and training of security forces may be appropriate for this, as well as negotiated safe spaces for women and girls to use to cultivate or gather natural resources that they rely on. DDR practitioners should ensure that these considerations are included in DDR assessments so that the safety and security risks to women and girls from accessing natural resources are minimized during the DDR process and beyond. For more guidance, see IDDRS 5.10 on Women, Gender and DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "46dafad0-2d16-4c46-8dda-af00ad3a5a49", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.3 Persons with disabilities Many DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. DDR practitioners should ensure that in all contexts, including those in which natural resources are present, disability-inclusive DDR is integrated into the overall DDR process and is not pursued in a segregated, siloed fashion. Persons with disabilities have many different needs and face different barriers to participation in DDR and in activities involving the natural resources sector. DDR practitioners should identify these barriers and the possibilities for dismantling them when conducting assessments. DDR practitioners should seek expert advice from, and engage in discussions with, organizations of persons with disabilities, relevant NGOs and government line ministries working to promote the rights of persons with disabilities, as outlined in the United Nations Convention on the Rights of Persons with Disabilities (2006) and Standard Rules on the Equalization of Opportunities for Persons with Disabilities (1993).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "82a50b5f-e29d-4c21-beb2-66a3237f52c2", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.4 Health considerations Natural resource management can have profound implications for public health. For example, the use of firewood and charcoal for cooking can lead to significant respiratory problems and is a major health concern in many countries, particularly for women and children. Improved access to energy resources can help to mitigate this (see section 7.3.4). Other key health concerns include waste and water management, both natural resource management issues that can be addressed through CVR and reintegration programmes. DDR practitioners should include these considerations in assessments and seek to improve health conditions through natural resource management wherever possible. Other areas where health is implicated are related to the deforestation and degradation of land. Pushing the forest frontier can lead to increased exposure of local populations to wildlife that may transmit disease, even leading to the outbreak of pandemics. DDR practitioners should identify areas that have experienced high rates of deforestation and target them for reforestation and other ecosystem rehabilitation activities wherever possible, according to the results of assessments and risk considerations. For further guidance, see IDDRS 5.70 on Health and DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "24220fdd-b0d6-44b4-baa0-a650888d5c31", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.5 Indigenous and tribal peoples and local communities Indigenous and tribal peoples and local communities around the world have close traditional and cultural ties to land and other aspects of natural resources. They often have customary forms of managing natural resources that support overall goals of conservation and preservation of natural resources \u2013 including for food, medicines and cultural purposes \u2013 as a form of management. In many contexts, the rights of indigenous peoples to their land are undermined or under-recognized (or not recognized at all) in national legislation, leading to allocation of these lands through concessions or other acts to private companies or groups seeking to exploit them for commercial production of agricultural or forest commodities. The right to free, prior and informed consent may often be undermined or ignored. DDR practitioners should identify where indigenous peoples and local communities have claim to lands that are otherwise subjected to overlapping claims by private or state entities seeking to exploit these lands and, once identified, seek to support these groups with access to local civil society and other legal aid groups that can help them to advocate for their lands and resources. DDR practitioners can also ensure that representatives of indigenous groups and local communities are included in natural resource management decision-making at local, national and regional levels.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e6a9fa8e-305a-4a84-bee7-9fe1c6c36b8d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 22, - "Paragraph": "6.3 Risk management and implementation Following the abovementioned assessments, DDR practitioners shall develop an inclusive and gender-responsive risk management approach to implementation. Table 4 includes a comprehensive set of risk factors related to natural resources to assist DDR practitioners when navigating and mitigating risks. In some cases, there may be systems in place to mitigate against the risk of the exploitation of natural resources by armed forces and groups as well as organized criminal groups. These measures are often implemented by the UN (e.g., sanctions) but will implicate other actors as well, especially when the natural resources in question are traded in global markets and end up in products placed in consumer markets with protections in place against trade in conflict resources. DDR practitioners shall avoid being seen as supporting individuals or armed forces and groups that are targeted by sanctions or other regimes and work closely with national and international authorities. TABLE 3. RISKS FROM NATURAL RESOURCES FOR THE FINANCING OF ARMED FORCES AND GROUPS Depending on the context, different types of natural resources will be risk factors for DDR practitioners. In almost all cases, land will be a risk factor that can drive grievances, while also being essential to kick-starting rural economies and for the agricultural sector. Other natural resources, including agricultural commodities (\u2018soft commodities\u2019) or extractive resources (\u2018hard commodities\u2019), will come into play depending on the context. Once identified through assessments, DDR practitioners should further analyse the nature of the risk based on the natural resource sectors present in the particular context, as well as the opportunities to create employment through the sector. For each of the sectors identified in Table 4, DDR practitioners should note the particular risk and seek expertise to implement mitigating factors. TABLE 4. NATURAL RESOURCE MANAGEMENT, RISK AND MITIGATING FACTORS", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2aff659d-5cef-4629-b5b9-e594cb7e6bc9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 25, - "Paragraph": "7. DDR programmes and natural resources To incorporate natural resources into the design and implementation of DDR programmes, DDR practitioners should ensure that technical capacities on natural resource issues exist in support of DDR, within DDR teams or national DDR structures (i.e., national government and military structures where appropriate), and/or are made available through partnerships with relevant institutions or partners, including representatives of indigenous peoples and local communities, or other civil society groups with relevant expertise. This may be done through the secondment of experts, providing training on natural resources, and consulting local partners and civil society groups with relevant expertise. During the programme development phase, risks and opportunities identified as part of the assessment and risk management process should be factored into the overall strategy for the programme. This can be accomplished by working closely with government institutions and relevant line ministries responsible for agriculture, land distribution, forestry, fisheries, minerals and water, as well as civil society, relevant NGOs, and the local and international private sector, where appropriate. DDR practitioners should ensure that all major risks for health, livelihoods and infrastructure, as well as disaster-related vulnerabilities of local communities, are identified and addressed in programme design and implementation, including for specific-needs groups. This is especially important for extractive industries such as mining, as well as forestry and agriculture, where government contracts and concessions that are being negotiated will impact local areas and communities, or where the extraction or production of the resources can result in pollution or contamination of basic life resources such as soils, air and water. Private-sector entities are increasingly pressured to conform to due diligence and transparency standards that seek to uphold human rights, labour rights and sustainable development principles, and DDR practitioners can leverage these expectations to increase their cooperation. Local traditional knowledge about natural resource management should also be sought and built into the DDR programme as much as possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e421ac3c-78df-4778-a5b7-683aa8ec0a15", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 25, - "Paragraph": "7.1 Disarmament Where the exploitation of natural resources is an entrenched part of the war economy and linked to the activities of armed forces and groups, as well as organized criminal groups, natural resources can be leveraged as a means of gaining control over certain territories and accessing weapons and ammunition. The main concern of DDR practitioners will be to support efforts to break the linkages between the flows of natural resources used to finance the acquisition of weapons and ammunition, including by working with actors involved in the implementation and monitoring of sanctions, including the UN Group of Experts, and contributing to strengthening the capacity of the security sector to reduce illicit weapons and ammunition flows. This can be difficult in contexts where members of armed groups and communities are unwilling to disarm because of concerns for their security. In such cases, transitional weapons and ammunition management (WAM) approaches may be needed (see section 8.2). To ensure that security objectives are achieved, DDR practitioners should examine the role of natural resources in the acquisition of weapons and ammunition and how weapons and ammunition are instrumental in exerting control over natural resources and access to the revenues from their trade. DDR practitioners should collaborate with relevant interagency stakeholders to ensure that natural resources are no longer used to finance the acquisition of weapons and ammunition for armed groups undergoing disarmament and demobilization or by individual combatants being disarmed and demobilized. When planning the destruction of weapons and ammunition, DDR practitioners should consider the environmental impact of the planned destruction. For further guidance on disarmament, see IDDRS 4.10 on Disarmament.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "74392180-6b12-4bcf-838d-191a36b7e97a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 26, - "Paragraph": "7.2 Demobilization Demobilization includes a reinsertion phase in which transitional assistance is offered to DDR programme participants for a period of up to one year, prior to reintegration support (see IDDRS 4.20 on Demobilization). Transitional assistance may be offered in a number of ways, including in-kind support, cash-based transfers, public works programmes and other income-generating activities. In contexts where there has been degradation of natural resources that are important for livelihoods or destruction of key water, sanitation and energy infrastructure, DDR programme participants can be employed in labour-intensive, quick-impact infrastructure or rehabilitation projects during the demobilization phase. When targeting natural resource management sectors, these projects can contribute to restoration and rehabilitation of environmental damages, increased protection of critical ecosystems, improved management of critical natural resources, and reduced vulnerability to natural disasters. Concerted efforts should be made to include women, youth, and elderly and disabled persons in planning and implementation of reinsertion activities.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "95e6a962-c872-4fee-8a4c-f56d4e2a1134", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "7.2.1 Quick-impact projects in natural resource management During reinsertion, DDR participants and beneficiaries can work on labour-intensive but unskilled activities that help to build their capacity and contribute to natural resource management. Examples of specific activities are included in Box 4. These types of activities are especially important in rural areas where many people depend on agriculture for their livelihoods. In urban areas, priority should be given to sanitation and access to water and health-related activities that will ensure that high-density areas are safe to live in. Activities designed to restore specific ecosystem functions, such as the restoration of mangroves to protect coastal communities from hurricanes or typhoons, or the stabilization of hillsides and mountains from heavy rains through reforestation or afforestation, can also improve the resilience of local communities to the increased frequency of natural disasters that accompany climate change. These efforts can be integrated into broader climate security efforts as well, through interagency coordination. DDR practitioners should prioritize investment in infrastructure projects that strengthen environmental resilience against future crises like climate change and natural disasters. The objective of addressing natural resources during the reinsertion phase of a DDR programme is to strengthen environmental resilience and lay the groundwork for sound, sustainable management of natural resources. Where possible, reinsertion activities should be linked to longer-term reintegration support (see Table 5).", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9dec5564-19fd-408a-99a1-4ce9a623a9aa", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "7.2.2 Demining agricultural areas Landmines and explosive remnants of war take a heavy toll on people\u2019s livelihoods, countries\u2019 economic and social development, and peacebuilding efforts. Restoring agricultural lands to a productive state is paramount for supporting livelihoods and improving food security, two of the most important concerns in any conflict-affected setting. Demining fields and potential areas for livestock and agriculture will therefore provide an essential step to restoring safety and access to agricultural lands and shoring up the confidence of local populations in the peace process. To ensure that agricultural land is returned to safety and productivity as quickly as possible, where applicable, DDR programmes should seek specific demining expertise. Male and female DDR programme participants and beneficiaries may be trained in demining during the reinsertion phase of a DDR programme and be supported to continue this work over the longer-term reintegration phase.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "699f830d-2123-4129-a50c-61fbc2f82601", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "7.2.3 Disposal and management of waste from conflict Conflicts often result in a large amount of waste and debris from the destruction of infrastructure, buildings and other resources. Short-term public works programmes can be used to clean up this debris and to provide income for community members and former members of armed forces and groups. Participants can also be engaged in the training, employment and planning aspects of waste and debris management. Attention should be paid to health and safety regulations in such activities, since hazardous materials can be located within building materials and other debris. Expertise on safe disposal options should be sought. Barriers to the participation of specific-needs groups should be identified and addressed.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "839cceca-6f92-49eb-86fb-dd126f59aa66", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 30, - "Paragraph": "7.3 Reintegration The guidance in this section is intended to complement IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration. DDR practitioners should seek to design reintegration activities that involve natural resources and support long-term sustainable livelihoods interventions. In conflict contexts, natural resource management is typically already a part of existing livelihoods and employment opportunities, in both formal and informal sectors. By carefully assessing and factoring natural resource management considerations \u2013 including foreseen impacts and potential threats from climate change \u2013 into reintegration efforts, DDR practitioners can help improve sustainability and resilience in these key livelihoods sectors. Together with national stakeholders and interagency coordination, promoting sound natural resource management may also create pathways to support key natural resource sectors to transition from the war economy and align with national development priorities. Engaging the private sector in the reintegration phase of a DDR programme is also an opportunity to formalize natural resource sectors. This is especially important for sectors that have been part of the root causes of conflict, continue to be exploited to finance conflict, or in which ex-combatants may already be engaged in informal employment or other income-generating activities. Changing these sectors helps to move the entire context from conflict towards sustainable peace. This is especially true in countries with significant potential for development of key natural resource sectors, whether in extractives or others. For example, individuals may join armed groups to access employment opportunities in the mining sector, but experience has shown that they prefer to work in mines regulated in the formal economy if they have the option. Support for the formalization of natural resource sectors may help reduce recruitment as well as create formal employment opportunities that will provide tax revenues for the State and be subject to national laws, including labour regulations. DDR practitioners must also consider both national and international private-sector actors as key contributors to economic revitalization. While it can be difficult to get accurate information on the activities of private companies and their agreements with Governments before, during and after conflict, DDR programmes offer an opportunity to engage with the private sector to enhance existing employment opportunities and to encourage their support for sustainable peace. DDR practitioners should determine the impacts and dependencies of the private sector on natural resources as part of their assessments and actively engage with local and international private companies to explore opportunities to generate employment and support community development through collaborations. This can help to identify existing and upcoming private-sector companies that could be engaged to supply training and employment to DDR programme participants and beneficiaries. In natural resource sectors, private companies can also provide much-needed expertise and support for infrastructure development. While this should be encouraged, DDR practitioners must also be aware that national policies and enforcement capacities also need to be in place for this to contribute to sustainable peace. For example, in countries where the Government is granting concessions to private entities for the exploitation of extractive or agricultural resources, sufficient due diligence requirements for transparency must be in place. These can include the ability for local communities to monitor company activities and the existence and enforcement of accompanying processes such as free, prior and informed consent and other principles of international norms included in the UN Guiding Principles on Business and Human Rights. Formalizing sectors that contribute to global supply chains, including minerals, timber or other high-demand agricultural commodities requires understanding the existing supply chain. This could mean working with existing actors and efforts contributing to improved transparency, traceability and engagement of emerging technologies and systems to support this. For instance, due diligence efforts in mineral supply chains are increasingly being digitized, thereby reducing the risk of fraud present with paper-based systems. In addition, electronic systems enable clearer tracing to downstream companies implicated in mineral supply chains that are also subject to regulations governing their risk of exposure to conflict in their supply chains. DDR practitioners should engage with these efforts to identify ways to target and improve employment opportunities for those participating in reintegration programmes, as well as to contribute to the overall stabilization of these sectors and their role in sustainable peace.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "57d2abba-ab48-4701-b73b-377ddb959da1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 31, - "Paragraph": "7.3.1 Value chain approaches and community-based natural resource management Value chains are defined as the full range of interrelated productive activities performed by organizations in different geographical locations to produce a good or service from conception to complete production and delivery to the final consumer. A value chain encompasses more than the production process; it also includes the raw materials, networks, flow of information and incentives between people involved at various stages. It is important to note that value chains may involve several products, including waste and by-products. Each step in a value chain process allows for employment and income-generating opportunities. Value chain approaches are especially useful for natural resource management sectors such as forestry, non-timber forest products (seeds, bark, resins, fruits, medicinal plants, etc.), fisheries, agriculture, mining, energy, water management and waste management. A value chain approach can strengthen the market opportunities available to support reintegration efforts, including improving clean technology to support production methods, accessing new and growing markets, and scaling employment and income-generation activities that are based on natural resources. DDR practitioners may use value chain approaches to enhance reintegration opportunities and to link opportunities across sectors. Engaging in natural resource sectors can be extremely contentious in conflict settings. To reduce any grievances or existing tensions over shared resources, DDR practitioners should undertake careful assessments and community consultations before including beneficiaries in economic reintegration opportunities in natural resource sectors. As described in the UN Employment Policy, community participation in these issues can help mitigate potential causes of conflict, including access to water, land or other natural resources. Capacity-building within the Government will also need to take place to ensure fair and equitable benefit sharing during local economic recovery. Reintegration programmes can benefit from engagement with private-sector entities to identify value chain development opportunities; these can be at the local level or for placement on international markets. If the activities undertaken during reintegration are to continue successfully beyond the end of reintegration efforts, communities and local authorities need to be placed at the centre of decision-making around the use of natural resources and how those sectors will be developed. It is therefore essential that reintegration programmes based on natural resources be conducted with input from communities and local civil society as well as the Government. Moving a step further, community-based natural resource management (CBNRM) approaches, which seek to increase related economic opportunities and support local ownership over natural resource management decisions, including by having women and youth representatives on CBNRM committees or village development committees, provide communities with strong incentives to sustainably manage natural resources themselves. Through an inclusive approach to CBNRM, DDR practitioners may ensure that communities have the technical support they need to manage natural resources to support their economic activities and build social cohesion. Due to their different roles and gendered divisions of labour, female and male community members may have different natural resource\u2013related knowledge, skills and needs that should be considered when planning and implementing CBNRM activities. Education and access to information are essential components of community empowerment and CBNRM programmes. This means that DDR practitioners should work to ensure that communities and specific-needs groups are fully informed of the risks and opportunities related to the natural resources and environment in the areas where they live. Providing communities with the tools and resources to manage natural resources can empower them to take ownership and to seek further engagement and accountability from the Government and private sector regarding natural resource management and governance.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f5f10405-de53-4271-882e-86d070502549", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 33, - "Paragraph": "7.3.2 Reintegration support and land rights In both rural and urban contexts, property rights, land tenure and access to land may underpin grievances and lead to further disputes or conflicts that undermine reintegration and sustainable peace. Land issues can be particularly complicated in countries where land governance frameworks and accompanying laws are not fully in place, where tenure systems do not exist or are contested, and where there are not due processes to resolve conflicts over land rights. In many cases, the State may claim rights to land that communities claim historical rights to and grant these lands to companies as concessions for extractive resources or to develop agricultural resources for trade in domestic and international markets. In these cases, DDR practitioners should carefully analyse the existing state of land tenure and related grievances to understand how they relate to the conflict context and may contribute to or undermine sustainable peace. Interagency cooperation and collaboration with national authorities will be essential, especially close collaboration with civil society and representatives of local communities. Where possible, addressing land-related grievances should be a priority for DDR practitioners, with support from experts and other agencies with mandates and resources to undertake the necessary efforts to improve the land tenure system of a particular context. DDR practitioners shall follow international guidelines for land tenure in the assessment, design and implementation phases of reintegration programmes. Since land tenure issues are a long-term development challenge, it is essential that DDR practitioners work with other specialized agencies to address this and ensure that land tenure reform efforts continue after the reintegration programme ends. TABLE 6. LAND RIGHTS ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7efed4d6-fd7e-4069-b87b-37d26c6a0edc", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 34, - "Paragraph": "7.3.3 Reintegration support and agriculture and fisheries In many conflict contexts, agriculture and fisheries are mainstays of economic activities and subsistence livelihoods. However, the resources needed for these activities, including access to land, livestock and grazing areas, and boats can be compromised or destroyed by conflict. Seasonal patterns associated with agriculture and fisheries activities are to be accounted for when providing reintegration support, especially when aiming to promote income-generation activities. DDR practitioners should analyse the agricultural sector to understand which crops are most important for livelihoods and work with experts to determine how reintegration efforts can support the revitalization of the sector after conflict, including consideration of seasonality of agricultural activities and any associated migration patterns, as well as changing climate and rainfall patterns that are likely to affect agriculture. As described at the beginning of this section, a value chain and CBNRM approach to these sectors can help to maximize the opportunities and success of reintegration efforts by supporting improved production and processing of a particular agricultural commodity or fisheries product. DDR practitioners should seek experts from national institutions, local communities and interagency partners to bring to bear as much technical expertise and as many resources as possible, including perspectives on which crop species and methods may yield the greatest impact in terms of resilience, sustainability and climate change adaptation. Improving resilience in the agricultural sector should be a high priority for DDR practitioners, with considerations for shifting rainfall patterns and the need for responsive mitigation factors related to climate change prioritized. Access to water, technology to manage crop seasons and improved varieties that are drought tolerant are some of the factors that DDR practitioners can take into consideration. DDR practitioners should consult experts for technical recommendations to improve the resilience of reintegration programmes in the agriculture sector, both in terms of ecological and technological improvements, as well as links and connections to markets and supply chains to improve prospects for long-term economic recovery. TABLE 7. AGRICULTURAL AND FISHERIES ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ee04a865-79b4-4b9f-a88c-35cb34bf8640", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 35, - "Paragraph": "7.3.4 Reintegration support and forestry Forestry as an economic sector can employ a substantial number of people but requires sound management to be sustainable. Forest lands are also often the traditional territories of indigenous peoples, and their rights to those lands may be undermined during the conflict or by hostile takeovers as part of the granting of concessions to logging companies. DDR practitioners should be careful to analyse the full range of claims and rights to forest lands and promote sustainable forest management as part of reintegration efforts, including promoting the human rights of forest-dwelling peoples. Opportunities to work collaboratively with the private sector for job creation must be accompanied by commitments to promote human rights, including land rights, as part of any reintegration effort in the forestry sector. National actors should be supported to build capacity for sustainable forest management and safe and decent working conditions as part of these efforts. Interagency collaborators can also support capacity-building and technical training. TABLE 8. FORESTRY ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "e1632f91-409d-4ba3-be8c-fc8597329b76", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 36, - "Paragraph": "7.3.5 Reintegration support and energy The energy sector varies in each context, but where natural resource management and reintegration is concerned, DDR practitioners should carefully analyse critical energy resources for livelihoods and households. In many contexts, the unsustainable use of small trees for charcoal production can lead to reduced soil stability and heightened vulnerability to climate change impacts. For women and girls, the distance required to travel to gather wood for charcoal can also pose security risks, especially for sexual and gender-based violence. Alternatives that may be promoted by DDR practitioners include the development of community-managed woodlots specifically for charcoal production that are sustainably managed and located in secure areas. These efforts also help to improve resilience by increasing supply for local energy needs as well as creating a sustainable source of livelihoods. In areas where other opportunities for energy production exist, such as micro-hydro or solar infrastructure, DDR practitioners should engage technical experts to identify opportunities and to determine what kinds of interventions may be feasible and recommended as part of reintegration efforts. Collaboration with national authorities and interagency stakeholders is also recommended for these efforts. TABLE 9. ENERGY ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d7b6e362-b528-44fa-934e-8009297a9021", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 37, - "Paragraph": "7.3.6 Reintegration support and extractives The extractive sector, which can include hydrocarbons as well as minerals, gems and precious metals, is often implicated in conflicts. The lootable nature of some of these resources, as well as the fact that they are in high demand and are highly valuable in international markets, makes them critical sources of potential financing for armed forces and groups, as well as organized criminal groups. Alternatively, these sectors have significant potential to contribute to livelihoods, employment and development if well managed. DDR practitioners shall include these sectors in their analysis and identify opportunities and potential partnerships to contribute to their formalization and management as part of reintegration efforts. Critical sources of information include entities working on improved transparency and traceability in these supply chains (including certification systems) who can provide DDR practitioners with important information on operations that may be good candidates for reintegration opportunities in the mining and extractives sector. Likewise, DDR practitioners can provide these entities with information on risks related to armed forces and groups, creating a flow of information to ensure that efforts to improve conflict-free operations and employment opportunities in the mining and extractives sector are well coordinated. Other critical actors to consider include male and female members of organized criminal groups who may already be involved in the extraction and trade of these resources. Where organized criminal groups, armed forces and groups, or even national security sector actors are implicated in the extraction and trade of these resources, DDR practitioners must ensure that they do not perpetuate this illicit capture of the extractive sector. Close collaboration with national and international stakeholders to help improve governance and enforcement of regulations in these sectors overall may be necessary before reintegration programmes can begin. DDR practitioners should look to engage with entities contributing to improving the transparency of these supply chains and to formalizing and strengthening employment opportunities. Once these sectors and actors have been identified, national actors and other technical expertise via interagency partnerships can be called upon by DDR practitioners to help support employment creation and formalization of the identified sectors. There are significant civil society resources at the international, regional and national levels that may be brought to bear here as well. In addition, DDR practitioners should seek to establish clear collaborations with private-sector entities engaged in these sectors in order to promote their adherence to national laws and international norms for the extractive sector, including around land rights, labour rights and human rights, including the free, prior and informed consent of any potentially affected communities. This might include efforts to register the miners, traders and other actors along the supply chain and to encourage purchasing from mines that are certified or that have due diligence traceability measures in place. Finally, DDR practitioners should identify any potential environmental harms that may have resulted or could result from interventions in these sectors. Where environmental harms already exist, DDR practitioners may design reintegration programmes to mitigate and repair these damages. Where development of the extractives sector could potentially contribute to future harms, DDR practitioners shall identify the appropriate mitigating measures necessary to protect both the health and labour rights of workers, as well as any potential environmental harms. TABLE 10. MINING ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "822bc224-416b-4c6b-a2fd-ccc5ec6523c6", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 39, - "Paragraph": "7.3.7 Reintegration support and water management Water management is a critical sector for livelihoods, as both households and the agricultural sector rely on water. It is also a potentially critical issue of grievance, depending on the conflict context. In areas where water resources have been a cause of conflict, DDR practitioners should include a full analysis of the various perspectives of those who claim any grievance over the water resource and seek opportunities to use water management as a means to promote social cohesion. Community-based approaches to water management can be employed to ensure that decision-making authority is distributed among key affected parties, with special attention to the inclusion of specific-needs groups and vulnerable populations who need access to water for safe consumption and their livelihoods. Water resource management can also be a powerful tool to promote cross-border, inter-regional or local cooperation. In areas where water resources cross political boundaries, this may necessitate transboundary agreements. In more local areas within political boundaries, water resource management can be addressed through locally devised options. Special attention shall be paid to any risk of contamination or diversion of water resources by upstream interventions as part of or outside of DDR programmes; to ensure this, DDR practitioners should consult technical experts to complete full analyses of the risks to any important water resource and integrate local and national actors and other interagency experts into the design of reintegration efforts as necessary. Attention should also be paid to allocation of water resources at the local level, including ensuring that access is equitable and that there are proper systems in place to ensure water quality and quantity. In addition, the current and likely future effects of climate change on water resources \u2013 underground as well as surface level and contributing rainfall patterns \u2013 should be considered when determining any interventions that may affect future water access and availability. TABLE 11. WATER MANAGEMENT ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f9a78cb5-ac18-49fc-8d21-6ddbbb237ff7", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 40, - "Paragraph": "7.3.8 Reintegration support and waste management Waste management can be a productive sector that contributes to economic reintegration and also needs to be considered for potential risks that could contaminate other natural resources. Any opportunities to improve sanitation and upcycle water materials can be integrated into reintegration efforts; DDR practitioners should engage technical experts to support analysis for this sector to mitigate any potential risks and create employment opportunities where possible. TABLE 12. WASTE MANAGEMENT ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "89f4f9f6-4b62-4182-b4f5-7a44ee8aeefc", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8. DDR-related tools and natural resource management When the preconditions are not present to support a DDR programme, a number of DDR-related tools may be used in contexts where natural resources are present. Alternatively, DDR-related tools may also be used before, during and after DDR programmes as complementary measures (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e6a258c0-778a-494f-ad8c-75ac9bf8e14a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.1 DDR support to mediation The parameters for DDR programmes are often set during peace negotiations, and DDR practitioners should seek to advise mediators on what type of DDR provisions are realistic and implementable (see IDDRS 2.20 on The Politics of DDR). Benefit sharing, whether of minerals, land, timber or water resources, can be a make-or-break aspect of peace negotiations. Thus, in conflicts where armed forces and groups use natural resources as a means of financing conflict or where they act as an underlying grievance for recruitment, DDR practitioners should advise mediators that, where possible, natural resources (or a future commitment to address natural resources) should also be included in peace agreements. Addressing these grievances directly in mediation processes is extremely difficult, so it is vital that sound and viable strategies for subsequent peacebuilding processes that seek to prevent the re-emergence of armed conflict related to natural resources are prioritized. It is important to carefully analyse how the conflict ended, to note if it was a military victory, a peace settlement, or otherwise, as this will have implications for how natural resources (especially land) might be distributed after the conflict ends. It is important to ensure that women\u2019s voices are also included, as they will be essential to the implementation of any peace agreement and especially to the success of DDR at the community level. Research shows that women consistently prioritize natural resources as part of peace agreements, and therefore their input should specifically be sought on this issue.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "98b6b3e5-c9f5-4b43-b769-2c0ded9fb256", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8.2 Transitional weapons and ammunition management Transitional weapons and ammunition management is a series of interim arms control measures. When implemented as part of a DDR process, transitional WAM is primarily aimed at reducing the capacity of individuals and armed groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. As outlined in section 5.2, natural resources may be exploited to finance the acquisition of weapons and ammunition. These weapons and ammunition may then be used by armed forces and groups to control territory. If members of armed forces and groups refuse to disarm, for reasons of insecurity, or because they wish to maintain territorial control, DDR practitioners may, in some instances, consider supporting transitional WAM measures focused on safe and secure storage and recordkeeping. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Management.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "6124ab31-ad71-42af-946b-79da6df66e56", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 42, - "Paragraph": "8.3 Community violence reduction Community violence reduction programmes have many different uses, including the prevention of recruitment. When natural resources are managed in a way that creates employment opportunities and supports development, they can help prevent or discourage the recruitment of individuals into armed forces and groups. Community-based initiatives and short-term employment opportunities that support good natural resource management, such as in infrastructure, disaster-risk reduction, rehabilitation of water resources, restoration of degraded ecosystems and others can provide needed livelihoods resources and discourage participation in other illicit activities or armed groups. In addition, CVR programmes can be used as stop-gap reinsertion assistance when the reintegration phase of a DDR programme is delayed. The projects implemented as part of a CVR programme are determined by local priorities and can include, but are not limited to, agriculture, labour-intensive short-term employment, and infrastructure improvement. As CVR and reintegration support may sometimes be designed as one programme, particularly in non-mission settings, DDR practitioners should be aware that the guidance on reinsertion and reintegration in this module also applies to CVR. For further information on CVR, see IDDRS 2.30 on Community Violence Reduction.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3d3d261e-9448-466b-be48-3424fd33e5b1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.4 Transitional security arrangements Many comprehensive peace agreements include provisions for transitional security arrangements (see IDDRS 2.20 on The Politics of DDR). Depending on the context, these arrangements may include the deployment of national or community police, or the creation of joint units, patrols or operations involving the various parties to a conflict. Joint efforts can help to increase scrutiny of the illicit trade in natural resources. However, these efforts may be compromised in areas where organized criminal groups are present or where natural resources are being exploited by armed forces or groups. In this type of context, DDR practitioners may be better off working with mediators and other actors to help increase provisions for natural resources in peace agreements or ceasefires (see section 8.1 and IDDRS 6.40 on DDR and Organized Crime). Where transitional security arrangements exist, education and training for security units on how to secure natural resources will ensure greater transparency and oversight, which can reduce opportunities for misappropriation.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "28959e0d-5140-4205-a482-9143909eda0d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "9. Reintegration support and natural resource management Reintegration support may be provided at all stages of conflict, even if there is no formal DDR programme or peace agreement (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). The guidance provided in section 7.3 of this module, on reintegration as part of a DDR programme, also applies to reintegration efforts outside of DDR programmes. In contexts of ongoing armed conflict, reintegration support can focus on resilience and improving opportunities in natural resource management sectors, picking up on many of the CBNRM approaches discussed in previous sections. In particular, engagement with other efforts to improve the transparency in targeted natural resource supply chains is extremely important, as this can be a source of sustainable employment opportunities and can reduce the risk that key sectors are recaptured by armed forces and groups. Undertaking these efforts together with other measures to help the recovery of conflict-affected communities can also create opportunities for social reconciliation and cohesion.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c3817f8e-9c9b-4461-8f65-7340cb16ca70", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "10. DDR, SSR and natural resource management Armed forces and groups often fuel their activities by assuming control over resource-rich territory. When States lose sovereign control over these resources, DDR and SSR processes are impeded. For example, resource revenues can prove relatively more attractive than the benefits offered through DDR and, as a result, individuals and groups may opt not to participate. Similarly, armed groups that are required by peace agreements to integrate into the national army and redeploy to a different geographical area may refuse to do so if it means losing control over resource-rich territory. Where members of the security sector have been controlling natural resource extraction and/ or trade areas or networks, this dynamic is likely to continue until the sector becomes formalized and there are appropriate systems of accountability in place to prevent illegal exploitation or trafficking of resources. Peace agreements that do not effectively address the role of natural resources risk leaving warring parties with the economic means to resume fighting as soon as they decide that peace no longer suits them. In contexts where natural resources fuel conflict, integrated DDR and SSR processes should be planned with this in mind. Where appropriate, DDR practitioners should advise mediation teams on the impact of militarized resource exploitation on DDR and SSR and recommend that provisions regarding the governance of natural resources are included in the peace agreement (if one exists). Care must also be taken not to further militarize natural resource extraction areas. The implementation of DDR in this context can be supported by SSR programmes that address the governance of natural resources. Among other elements, these programmes may focus on ensuring the transparent and accountable allocation of natural resource concessions and transparent management of the revenues derived from their exploitation. This will involve supporting assessments of what natural resources the country has and their best possible usage; assisting in the creation of laws and regulations that require transparency and accountability; and building institutional capacity to manage natural resources wisely and enforce the law effectively. For more information on the relationship between DDR and SSR, see IDDRS 6.10 on DDR and Security Sector Reform.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "55799d88-77a1-4145-b648-a0c0e6bcc64a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "Annex A: Abbreviations CBNRM\tcommunity-based natural resource management CVR\tcommunity violence reduction EITI\tExtractive Industries Transparency Initiative NGO\tnongovernmental organization SSR\tsecurity sector reform WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7b336ae1-c059-44f6-8a5c-105ba9e2cdb9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 44, - "Paragraph": "Annex B: Sample questions for specific-needs analysis of natural resources in DDR Sample questions for conflict and security analysis: Who in the communities/society/Government/armed groups benefits from the natural resources that were implicated in the conflict? How do men, women, boys, girls and people with disabilities benefit specifically? Who has access to and control over natural resources? What is the role of armed groups in this? What trends and changes in natural resources are being affected by climate change, and how is access and control over natural resources impacted by climate change? Who has access to and control over land, water and non-extractive resources disaggregated by sex, age, ethnicity and/or religion? What is the role of armed groups in this? What are the implications for those who do not carry arms (e.g., security and access to control over resources)? Who are the most vulnerable people in regard to depletion of natural resources or contamination? Who are vulnerable people in terms of safety and security by virtue of the dynamics related to natural resources and what are the specific vulnerabilities of men, women and minorities? Which groups face constraints in their access to and ownership of capital assets? Sample questions for disarmament operations and transitional weapons and ammunition management: Who within the armed groups or in the communities carry arms? Do they use these to control natural resources or specific territories? What are the implications of disarmament and stockpile management sites for local communities\u2019 livelihoods and access to natural resources? Are the implications different for women and men? What are the reasons for male and female members of armed groups to hold arms and ammunition (e.g., lack of alternative livelihoods, lootability of natural resources, status)? What are the reasons for male and female community members to possess arms and ammunition (e.g., access to natural resources, protection, status)? Sample questions for demobilization (including reinsertion): How do cantonments or other demobilization sites affect local communities\u2019 access to natural resources? How are women and men affected differently? What are the infrastructure needs of local communities? What are the differences between women\u2019s and men\u2019s priorities? To act in a manner inclusive of all relevant stakeholders, whose voices should be heard in the process of planning and implementing reinsertion activities with local communities? What are the traditional roles of women and men in labour market participation? What are the differences between age groups? Do women or men have cultural roles that affect their participation (e.g., childcare roles, cultural beliefs, time poverty)? What skills and abilities are required in participants of the planned reinsertion activities? Are there groups that require special support to be able to participate in reinsertion activities? Sample questions for reintegration and community violence reduction programmes: What are the gender roles of women and men of different age groups in the community? What decisions do men and women make in the family and community? Who within the household carries out which tasks (e.g., subsistence/breadwinning, decision-making over income spending, childcare, household chores)? What are the incentives of economic opportunities for different family members, and who receives them? Which expenditures are men and women responsible for? How rigid is the gendered division of labour? What are the daily and seasonal variations in women\u2019s and men\u2019s labour supply? Who has access to and control over enabling assets for productive resources (e.g., land, finances, credit)? Who has access to and control over human capital resources (e.g., education, knowledge, time, mobility)? What are the implications for those with limited access or control? For those who risk their safety and security to access natural resources? How do constraints under which men and women of different age groups operate differ? Who are the especially vulnerable groups in terms of access to natural resources (e.g., women without male relatives, internally displaced people, female-headed households, youth, persons with disabilities)? What are the support needs of these groups (e.g., legal aid, awareness raising against stigmatization, protection)? How can barriers to the full participation of these groups be mitigated?", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "745f6562-1eea-4ba6-87d4-331633ee82b4", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 45, - "Paragraph": "Annex C: Relevant frameworks and standards for natural resources in conflict settings Second report on protection of the environment in relation to armed conflicts of 2019 (A/CN.4/728) by Special Rapporteur Marja Lehto The report considers certain questions about the protection of the environment in non-international armed conflicts, with a focus on how the international rules and practices concerning natural resources may enhance the protection of the environment during and after such conflicts. It should be underlined that the two issues considered \u2013 illegal exploitation of natural resources and unintended environmental effects of human displacement \u2013 are not exclusive to non-international armed conflicts. Nor do they provide a basis for a comprehensive consideration of environmental issues relating to non-international conflicts. At the same time, they are representative of problems that have been prevalent in current non-international armed conflicts and have caused severe stress to the environment. The Sustaining Peace Approach and twin resolutions on the review of the UN Peacebuilding Architecture of 2018 (GA resolution 70/262 and SC resolution 2282 (2016)) The concept of \u2018sustaining peace\u2019 has emerged as a new and comprehensive approach to preventing the outbreak, continuation and recurrence of conflict.\u00a0It marks a clear break from the past where efforts to build peace were perceived to be mainly restricted to post-conflict contexts. The concept, framed by the twin sustaining peace resolutions and the UN Secretary-General\u2019s report on peacebuilding and sustaining peace, recognizes that a comprehensive approach is required across the peace continuum, from conflict prevention, through peacemaking, peacekeeping and longer-term development. It therefore necessitates an integrated and coherent approach among relevant political, security and developmental actors, within and outside of the United Nations system. Secretary-General\u2019s Action for Peacekeeping initiative and Declaration of Shared Commitments (2018) Through his Action for Peacekeeping initiative, the Secretary-General called on Member States, the Security Council, host countries, troop- and police-contributing countries, regional partners and financial contributors to renew their collective engagement with UN peacekeeping and mutually commit to reach for excellence. The Declaration commitments focus on a set of key priorities that build on both new commitments and existing workstreams. Implementation goals are centred on eight priority commitment areas: Politics; Women, peace and security; Protection; Safety and security; Performance and accountability; Peacebuilding and sustaining peace; Partnerships; and Conduct of peacekeepers and peacekeeping operations. 2030 Agenda for Sustainable Development and the Sustainable Development Goals The Sustainable Development Goals include elements that pertain to DDR, gender and natural resources. A comprehensive approach to achieving them requires humanitarian and development practitioners, including those working in DDR processes, to take into account each of these goals when planning and designing interventions. Report of the Secretary-General on women\u2019s participation in peacebuilding (A/65/354\u2013S/2010/466) The report calls on all peacebuilding actors to \u201censure gender-responsive economic recovery\u201d through \u201cthe promotion of women as \u2018front-line\u2019 service-delivery agents\u201d, including in the areas of \u201cagricultural extension and natural resource management\u201d. Report of the Secretary-General on disarmament, demobilization and reintegration (A/65/741) The 2011 report of the Secretary-General on DDR identifies trafficking in natural resources as a \u201ckey regional issue affecting the reintegration of ex-combatants\u201d and specifically refers to natural resource management as an emerging issue that can contribute to the sustainability of reintegration programmes if properly addressed. General Assembly resolution on observance of environmental norms in the drafting and implementation of agreements on disarmament and arms control (A/RES/65/53) This resolution underlines \u201cthe importance of the observance of environmental norms in the preparation and implementation of disarmament and arms limitation agreements\u201d and reaffirms that the international community should contribute to ensuring compliance with relevant environmental norms in negotiating treaties and agreements on disarmament and arms limitation. It further calls on \u201call States to adopt unilateral, bilateral, regional and multilateral measures so as to contribute to ensuring the application of scientific and technological progress within the framework of international security, disarmament and other related spheres, without detriment to the environment or to its effective contribution to attaining sustainable development\u201d. Report of the Secretary-General on peacebuilding in the immediate aftermath of conflict (A/64/866\u2013S/2010/386) In this report, the Secretary-General notes that \u201cgreater efforts will be needed to deliver a more effective United Nations response\u201d in the area of natural resources, and he calls on \u201cMember States and the United Nations system to make questions of natural resource allocation, ownership and access an integral part of peacebuilding strategies\u201d. United Nations Policy for Post-Conflict Employment Creation, Income Generation and Reintegration (2009) The policy notes the importance of addressing \u201croot causes of conflict such as inequitable access to land and natural resources\u201d through the use of \u201cfiscal and redistributive incentives to minimize social tensions\u201d during the reintegration process. It further suggests: Diversifying away from natural resource exports by expanding labour-intensive exports and tourism; Implementing cash-for-work projects in relevant agricultural and natural resource sectors in rural areas; Engaging traditional authorities in dispute resolution, particularly with regard to access to property and other natural resources (such as forestry, fishing and grazing land); and Implementing labour-intensive infrastructure programmes to promote sustainable agriculture, including restoration of the natural resource base, while simultaneously emphasizing social acceptance and community participation. International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169) Convention No. 169 offers a unique framework for the protection of the rights of indigenous peoples as an integral aspect of inclusive and sustainable development. As the only international treaty on the subject, it contains specific provisions promoting the improvement of the standards of living of indigenous peoples from an inclusive perspective, and includes their participation from the initial stages in the planning of public policies that affect them, including labour policies. The policy stipulates that the rights of ownership and possession over the lands they traditionally occupy shall be recognized. International Labour Organization Recommendation on Employment and Decent Work for Peace and Resilience, 2017 (No. 205) This policy builds on the International Labour Organization\u2019s Employment Transition from War to Peace Recommendation, 1944 (No. 71), and features an expanded scope including internal conflicts and disasters. It broadens and updates the guidance on employment and several other elements of the Decent Work Agenda, taking into account the current global context and the complex and evolving nature of contemporary crises as well as the experience gained by the International Labour Organization and the international community in crisis response over the last decades. It also focuses on recovery and reconstruction in post-conflict and disaster situations, as well as addressing root causes of fragility and taking preventive measures for building resilience. Security Council resolution 1509 (2003) on Liberia (S/RES/1509); resolution 1565 (2004) on the Democratic Republic of the Congo (S/RES/1565); and resolution 1856 (2008) on the Democratic Republic of the Congo (S/RES/1856) These resolutions share an emphasis on the link between armed conflict and the illicit exploitation and trade of natural resources, categorically condemning the illegal exploitation of these resources and other sources of wealth: In resolution 1509, the UN Peacekeeping Mission in Liberia was called upon to assist the transitional Government in restoring the proper administration of natural resources. Resolution 1565 urges \u201call States, especially those in the region including the Democratic Republic of the Congo itself, to take appropriate steps in order to end these illegal activities, including, if necessary, through judicial means \u2026 and exhorts the international financial institutions to assist the Government of National Unity and Transition in establishing efficient and transparent control of the exploitation of natural resources\u201d. Resolution 1856 recognized the link between the illegal exploitation of natural resources, the illicit trade in such resources and the proliferation and trafficking of arms as one of the major factors fuelling and exacerbating conflicts in the Great Lakes region of Africa, and in particular in the Democratic Republic of the Congo\u201d. It directed that the UN Peacekeeping Mission work in close cooperation with the Government in order to, among other things, execute the \u201cdisarmament, demobilization, monitoring of resources of foreign and Congolese armed groups\u201d, and, more specifically, \u201cuse its monitoring and inspection capacities to curtail the provision of support to illegal armed groups derived from illicit trade in natural resources\u201d. Secretary-General\u2019s progress report on the prevention of armed conflict (A/60/891) The Secretary-General\u2019s progress report notes, \u201cThe most effective way to prevent crisis is to reduce the impact of risk factors. \u2026 These include, for instance, international efforts to regulate trade in resources that fuel conflict, such as diamonds \u2026 efforts to combat narcotics cultivation, trafficking and addiction \u2026 and steps to reduce environmental degradation, with its associated economic and political fallout. Many of these endeavours include international regulatory frameworks and the building of national capacities\u201d. In addition, he emphasizes more specifically that \u201cenvironmental degradation has the potential to destabilize already conflict-prone regions, especially when compounded by inequitable access or politicization of access to scarce resources\u201d, and urges \u201cMember States to renew their efforts to agree on ways that allow all of us to live sustainably within the planet\u2019s means\u201d. He encourages, among other things, implementing programmes that \u201ccan also have a positive impact locally by promoting dialogue around shared resources and enabling opposing groups to focus on common problems.\u201d United Nations Development Group \u2013 Executive Committee on Humanitarian Affairs Guidance Note on Natural Resource Management in Transition Settings (January 2013) This note provides guidance on policy anchors for natural resource management in transition settings, key guiding questions for extractive industries, renewable resources and land to help understand their existing and potential contribution to conflict and peacebuilding and describes entry points where these issues should be considered within existing UN processes and tools. It includes annexes that highlight tools, resources and sources of best practice and other guidance for addressing natural resource management challenges in transition settings.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b29f2ccd-f323-49be-a88c-b21d6acfe698", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 49, - "Paragraph": "Examples of relevant certification schemes, standards, guidelines and principles Extractive Industries Transparency Initiative (EITI) The EITI is a coalition of Governments, companies, civil society groups, investors and international organizations that has developed an international standard for transparent reporting on revenues from natural resources. With the EITI, companies publish what they pay and Governments publish what they receive so as to encourage transparency and accountability on both sides. The process is overseen by a multi-stakeholder group of Governments, civil society organizations and companies that provides a forum for dialogue and a platform for broader reforms along the natural resources value chain. Food and Agriculture Organization of the United Nations Voluntary Guidelines on Tenure The purpose of these guidelines is to serve as a reference and provide guidance to improve the governance of tenure of land, fisheries and forests with the overarching goal of achieving food security for all. The guidelines focus on the linkages between tenure of land, fisheries and forests and poverty eradication, food security and sustainable livelihoods, with an emphasis on vulnerable and marginalized people. They mention specific actions that can be taken to improve tenure for land, fisheries and forests, especially for women, children, youth and indigenous peoples, as well as for the resolution of disputes, conflicts over tenure, and cooperation on transboundary matters. Pinheiro Principles on Housing and Property Restitution for Refugees and Displaced Persons These principles were endorsed by the United Nations Sub-Commission on the Promotion and Protection of Human Rights on 11 August 2005 and are firmly established on the basis of international humanitarian and human rights law. They provide restitution practitioners, States and UN agencies with specific policy guidance relating to the legal, policy, procedural, institutional and technical implementation mechanisms for housing and property restitution following conflicts, disasters or complex emergencies. While the principles are focused on housing, land and property rights, they also apply to commercial properties, including agricultural and pastoral land. They advocate for the inclusion of housing, land and property rights issues as part of comprehensive peace agreements as well as part of humanitarian appeals and budgets. Natural Resource Charter The charter is a set of principles for Governments and societies on how to best harness the opportunities created by extractive resources for development. It outlines tools and policy options designed to avoid the mismanagement of diminishing natural riches and ensure their ongoing benefits. The charter is organized around 12 core precepts offering guidance on key decisions Governments face, beginning with whether to extract resources and ending with how generated revenue can produce maximum good for citizens. It is not a recipe or blueprint for the policies and institutions countries must build, but rather a set of principles to guide decision-making processes. First launched in 2010 at the annual meetings of the International Monetary Fund and the World Bank, the charter was written by an independent group of practitioners and academics under the governance of an oversight board composed of distinguished international figures with first-hand experience of the challenges faced by resource-rich countries. OECD Due Diligence Guidance for Responsible Supply Chains of Minerals from Conflict-Affected and High-Risk Areas This guidance provides detailed recommendations to help companies respect human rights and avoid contributing to conflict through their mineral purchasing decisions and practices. It is for use by any company potentially sourcing minerals or metals from conflict-affected and high-risk areas. The guidance is global in scope and applies to all mineral supply chains. Section 1502 of the Dodd-Frank Act The \u2018conflict minerals\u2019 provision \u2013 commonly known as\u00a0Section 1502 of the Dodd-Frank Act \u2013 requires U.S. publicly listed companies to check whether their supply chains for tin, tungsten, tantalum and gold might originate in Congo or its neighbours, take steps to address any risks they find, and report on their efforts every year to the U.S. Securities and Exchange Commission). Companies are not encouraged to stop sourcing from this region but are required to show they are working with the appropriate care \u2013 or \u201cdue diligence\u201d \u2013 to make sure they are not funding armed groups or human rights abuses. Kimberley Process The Kimberley Process Certification Scheme imposes extensive requirements on its members to enable them to certify shipments of rough diamonds as \u2018conflict-free\u2019 and prevent conflict diamonds from entering the legitimate trade. Under the terms of the Kimberley Process, participating States must meet \u2018minimum requirements\u2019 and must put in place national legislation and institutions; adopt export, import and internal controls; and commit to transparency and the exchange of statistical data. Participants can only legally trade with other participants who have also met the minimum requirements of the scheme, and international shipments of rough diamonds must be accompanied by a Kimberley Process certificate guaranteeing that they are conflict free. UN Guiding Principles on Business and Human Rights This is a set of guidelines for States and companies to prevent, address and remedy human rights abuses committed in business operations. The principles are organized under three main tenets: protect, respect and remedy. Companies worldwide are expected to comply with these norms, which underpin existing movements to create due diligence legislation for company supply chain operations. Land Governance Assessment Framework Development practitioners of all persuasions recognize that a well-functioning land sector can boost a country\u2019s economic growth, foster social development, shield the rights of vulnerable groups, and help with environmental protection. The World Bank\u2019s Land Governance Assessment Framework is a diagnostic instrument to assess the state of land governance at the national or subnational level. Local experts rate the quality of a country\u2019s land governance along a comprehensive set of dimensions. These ratings and an accompanying report serve as the basis for policy dialogue at the national or subnational level.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": true - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022.json b/static/data/json/IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022.json deleted file mode 100644 index f59b53c..0000000 --- a/static/data/json/IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022.json +++ /dev/null @@ -1,154 +0,0 @@ -[ - { - "ID": "3792d87b-88ac-47b5-a73d-cfb826e1f574", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 3.1 Purpose and rationale 3.2 Frequency 3.3 Ownership 4. Guiding principles 4.1 People-centred 4.2 Gender-responsive and inclusive 4.3 Conflict sensitive 4.4 Context specific 4.5 Flexible, accountable and transparent 4.6 Nationally and locally owned 4.7 Integrated 4.8 Well planned 5. Categories and types of integrated assessments in DDR 5.1 Integrated strategic assessments 5.2 Integrated technical assessments 6. Guidance for DDR practitioners for integrated assessments 6.1 Success factors of integrated assessments 6.2 An approach to integrated assessments in DDR 7. Risk and security assessments 7.1 General risk assessment of a DDR process 7.2 Risk and security analysis in the conduct of integrated assessments Annex A: Pre-analysis and situational assessments Endnotes", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2350dff8-a5fe-4c5a-9def-0fe9ebe66166", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "3.11 Integrated Assessments for DDR Summary This module provides DDR practitioners with guidance on leading and participating in integrated assessments in DDR. In the IDDRS, the term \u2018integrated\u2019 is used to indicate the cooperative implementation of policies, structures and processes that support effective disarmament, demobilization and reintegration processes, recognizing common strategic aims. \tIntegrated assessments are any analytical process at the strategic, programmatic or operational level which carries implications for multiple UN entities and therefore requires participation by relevant UN entities. Like DDR processes themselves, integrated assessments are highly varied, have diverse stakeholders and often are implemented in complex and risky environments and in both mission and non-mission contexts). \tAt the highest UN system level are Strategic Assessments, the analytical process used to undertake integrated assessment at the UN system-wide level. According to the Integrated Assessment and Planning (IAP) Policy, the purpose of integrated strategic assessments is: \u201cto bring the UN political, security, development, humanitarian and human rights entities together to develop a shared understanding of a conflict or post-conflict situation, role of stakeholders and core peace consolidation priorities, and to propose options for UN engagement on the basis of an assessment of risks and opportunities. Ahead of Mission start-up planning or during the lifecycle of established integrated presences, the Strategic Assessment provides a basis for the development of recommendations on the nature and (re)configuration of UN engagement for the consideration of the Secretary-General and, when required, subsequently the Security Council.\u201d While this level of integrated assessment is not discussed in detail in this module it is referenced in order to illustrate the success factors of Strategic Assessments that are relevant to inter-agency assessments conducted in preparation for and during implementation of DDR (see Integrated Assessment and Planning Policy Handbook for guidance on Strategic Integrated Assessments). These DDR-related integrated assessments are categorised as: Integrated Assessments for the DDR Strategic Planning Phase (such as Planning for Transition/Exit), Key DDR Process-Informing Integrated Assessments (such as profiling Non-State Armed Groups), and Linkage-Focused Integrated Assessments (intended to analyse linkages such as with SSR, Transitional Justice, Natural Resources, and Organised Crime). As with DDR processes, integrated assessments should be informed by and conducted with full awareness of DDR cross-cutting issues (See IDDRS level 5 on Cross-Cutting Issues). \tIn UN policy broadly these three categories of DDR-related integrated assessments may be considered \u2018technical assessments\u2019 however DDR practitioners shall be aware that there are upstream, downstream and lateral linkages between integrated assessments. Upstream linkages indicate that the integrated assessment may inform higher level strategic planning including that conducted outside of DDR. Downstream linkages indicate that some integrated assessments link to further analysis of more narrow technical issues such as logistics and budgeting. Lateral linkages are often mutually informing connections with assessments conducted for other aspects of DDR processes as well as with assessments in non-DDR but relevant sectors, namely; SSR, Transitional Justice, Natural Resources and Organized Crime. \tThese technical assessments shall be conducted in a participatory and gender-responsive manner. DDR practitioners should involve relevant stakeholders in assessments where there are implications for the stakeholders and where value can be added through their participation including as way to nurture a shared vision of the key parameters of the DDR process. The combination of participating entities and communities will vary depending on the type of assessment and the particular focus of the analytical work. Some combination of national authorities, inclusive representation from civil society (i.e. youth groups or organizations, women\u2019s groups, etc.), research institutions other local representatives, affected populations, key international partners including donors, regional and sub-regional organisations, and key member states should be consulted. \tAssessments should follow four stages in their lifecycle. For the first stage DDR practitioners should establish the rationale, objectives, participants, context, deliverables, timelines and budget for the assessment. Essentially this is the why, when, what, where, who and how of the assessment. It includes establishing the authorising framework for the assessment. Those elements should be included in one single Terms of Reference agreed by and available to all partners. \tThe second stage is the implementation of the integrated assessment. DDR practitioners should approach the implementation of the integrated assessment with full recognition that an integrated assessment may follow varied paths depending upon the rationale, objectives, participants, context, deliverables, timelines and the focus of the assessment including cross-cutting issues and DDR linkages, whether or not the assessment includes and Technical Assessment Mission, and whether or not the integrated assessment is being implemented in a mission or non-mission setting. At a generic level this implementation stage of the integrated assessment involves a situational assessment, stakeholder mapping, data collection, verification and analysis, identifying decision and action points and identifying existing capacities and weaknesses relevant to these decision and action points. \tThe third stage requires DDR practitioners to ensure that the integrated assessment informs and influences decision making. Involving relevant stakeholders in the previous phases should increase the likelihood that decisions about DDR are based on evidence. \tThe fourth stage requires DDR practitioners to ensure the monitoring and evaluation of decisions made on the basis of the analysis in the integrated assessment. As with all other aspects of an integrated assessment this may include participatory feedback mechanisms and fora. 1. Module scope and objectives This module provides guidance for situations when two or more agencies are conducting an assessment together in relation to DDR processes, but does not include detailed discussions on DDR practitioners\u2019 participation in Strategic Integrated Assessments as outlined by the Integrated Assessment and Planning Policy. The scope of the module is DDR in UN mission and non-mission settings, regardless of whether the preconditions for DDR programmes exist or not (see IDDRS 2.10 on The UN Approach to DDR). \tIntegrated assessments aim at creating a shared understanding the context, conflict and gender dynamics, the role of key stakeholders, and the different types of needs and capacities for planning a successful DDR process. Integrated assessments shall include risk assessment and shall lay the foundation for evidence-based DDR planning and implementation. \tThis module provides guidance on: Situating the role of integrated assessment in the DDR processes for the UN. The various types of integrated assessments in DDR. Success factors in integrated assessments in DDR. How to approach integrated assessments in DDR. Risk and security as part of integrated assessments in DDR. DDR practitioners should be aware that the term \u2018assessment\u2019 can be applied to most analytical work required by and outlined in the IDDRS including cross-cutting issues and linkages. Cross-cutting issues are: Women, gender and DDR. Children and DDR. Youth and DDR. Cross-border population movements. Food assistance in DDR. HIV/AIDS and DDR. Health and DDR. Disability-Inclusive DDR. While cross-cutting issues and gender analysis shall inform all integrated assessments they may also require stand-alone integrated analytical work. \tFor the purposes of the IDDRS, DDR linkages are: DDR and SSR. DDR and Transitional Justice. DDR and Natural Resources. DDR and Organised Crime. DDR and Armed Group Designated as Terrorist Organisations (AGDTO). DDR linkages will arise in sectors other than those considered in IDDRS level 6. Many will have relevance to many aspects of planning and implementing DDR processes but, like cross-cutting issues they may require stand-alone integrated analytical work. \tOf the IDDRS level 3, this module complements IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design, and IDDRS 3.50 on Monitoring and Evaluation and is relevant to most modules in levels 2 through 6 inclusive. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. \tIn the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "343b483b-e0e2-406e-9706-0da9fc477248", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "In this module \u2018DDR\u2019 is used as the comprehensive term to refer to integrated DDR processes, including DDR programmes, related-tools and reintegration support (see IDDRS 2.10 on The UN Approach to DDR). Any particular assessments may be relevant for DDR programmes and/or DDR-related tools and/or reintegration support.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f74776aa-eee4-46e3-ab2f-6acfe5b379b3", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": 5, - "Paragraph": "3. Introduction This module builds on IDDRS 3.10 on Integrated DDR Planning: Processes and Structures. It aims to provide further guidance on integrated technical assessments as the first step in the planning, design and implementation of DDR processes. IDDRS 3.10 stipulates that for the purposes of DDR strategic planning, DDR practitioners should conduct two types of integrated assessments: pre-analysis and situation assessment. 3.1 Purpose and rationale The general objective of integrated assessments is to provide an accurate, shared and objective understanding of the context for DDR. This understanding should be shared among the UN entities and national and international stakeholders likely to play a role in the DDR process.\tIn summary, as described in IDDRS 3.10 the purpose of the pre-analysis is to: Identify the reasons for DDR strategic planning at any given time, for example, a UNSC mandate, peace agreement or government request. It situates the decision to engage in DDR strategic planning in the given authorizing frameworks. Identify the scope of DDR strategic planning. Identify the stakeholders for the DDR strategic plan. Identify other plans with which the DDR strategic plan should be harmonized. \tIn summary, as described in IDDRS 3.10 on Integrated Planning: Processes and Structures the purpose of the situation assessments is to: Provide an in-depth understanding of the international, regional, national or local contexts for the design and implementation of DDR. Identify how these contexts should inform and shape the choice of DDR process for any given situation. \tIn DDR the pre-analysis assessments and situation assessments shall be integrated. By definition an integrated assessment is: any UN analytical process at the strategic, programmatic or operational level which carries implications for multiple UN entities, and which therefore requires participation by concerned UN entities. The Strategic Assessment is the analytical process used to undertake integrated assessment at the UN system-wide level for the purpose defined in paragraph 28 of this policy. Assessments of a technical nature, such as technical assessment missions (TAMs) and sector assessments initiated by either Secretariat departments or agencies, funds and programmes, are integrated if and when their scope and operational implications relate to multiple entities of the UN system. \tPut simply, where planning has an implication for more than one UN entity the relevant assessment to inform that planning should be conducted in an integrated manner whereby the concerned UN entities participate. Integrated assessments in DDR will contribute data and analysis to relevant stakeholders including those outside the UN facilitating them to acquire a common understanding of issues relevant to DDR. Practitioners should decide whether or not to conduct the assessment in an integrated manner based on the principle that if the assessment has an implication for more than one UN entity then it should be integrated. \t\tThe process of engaging in an integrated assessment is also valuable. It may constitute the first time some key stakeholders meet and work together. The process sets the tone for cooperation needed during DDR. Inclusiveness in the integrated assessment process is important in order to foster ownership of the results of the assessment and to establish a shared vision for DDR. \tA decision on how to involve stakeholders from outside the UN system should be should be based on answering a similar question about the implications of the assessment for the non-UN entity and the value added/value to be gained by having the non-UN entity involved. DDR practitioners shall engage in an inclusive approach that facilitates key stakeholders external to the UN such as government and donors to participate in the assessment process, to develop close working relationships and to collaboratively nurture evidence-based programming. \tDDR practitioners shall involve national stakeholders in integrated assessments including those that will contribute to developing national DDR resources such as policies, strategies and programmes. The combination of participating entities and communities will vary depending on the type of assessment and the particular focus of the analytical work. Some combination of national authorities, inclusive representation of civil society (i.e., youth groups, women\u2019s groups, etc. depending on the context), other local representatives, affected populations, key international partners including donors, regional and sub-regional organisations, and key member states shall be, informed, consulted and involved as relevant. Local perspectives shall be taken into account in the analysis in the integrated assessment and in how it identifies action points. Clearly it is not necessary (and may not be possible) to involve all entities and communities in each and every integrated assessment. When deciding what/who participates DDR practitioners should use best judgement after considering many factors which may include the UN mandate, core values, how to strengthen partnerships, value added by participation and feasibility of participation. \tAt all times the involvement of national stakeholders shall be driven by the overarching guidance of IDDRS 3.30 on National Ownership and National Institutions in DDR. The participation of national stakeholders in relevant assessments should contribute to building their capacity to coordinate the participation of international partners to achieve common DDR objectives and contribute to the achievement of peace-building objectives. Where relevant, UN-led assessments should inform domestic planning and strategy for DDR and other aspects of conflict recovery and peace-building. \tIntegrated assessments in DDR will help provide information to inform the decision whether or not a DDR process is justified, to inform the decision regarding the type of DDR process suitable for the context and also the budget, engagement with stakeholders, sequencing between interventions, and synergies with other initiatives. They will contribute to ensuring that decisions specific to the type of DDR process being planned or implemented are evidence-based. Integrated assessments may provide baselines to define the specific objectives of the DDR process in each context, as well as the related M&E framework. Integrated assessments for the DDR process will feed into the broader stabilization, peacebuilding and/or recovery framework, with synergies throughout the humanitarian, development and peace (HDP) nexus. 3.2 Frequency Depending on the conflict context, the category of integrated assessment, the nature of the data, the information and analysis contained in the initial assessment and the function of the data, for example; if the data constitutes or informs DDR monitoring and evaluation, integrated assessments may need to be updated, revised or re-run during the lifespan of DDR including until impacts are fully understood (see also IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on DDR Monitoring and Evaluation). 3.3 Ownership Integrated assessments involve multiple organizations with specific interests in the process but incentives to share data can be limited. Decisions should be made early on the ownership of the assessment and how and with whom it will be shared to avoid tensions around distribution and use. Integrated assessments are a first step to coordinated efforts for a collaborative and coordinated response to a conflict situation, which considers short-term and long-term perspectives. The level of involvement and role of the national authorities can also vary but the process should be designed to nurture national ownership to the extent possible including using the assessment to develop national capacities. There can also be a differentiated engagement strategy between national political and technical services. The overall process will benefit from the strong involvement of national stakeholders at central and/or local levels. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to integrated assessments for DDR processes. 4.1 People-centred Assessments shall consider the needs and positions of all stakeholders (Government, armed forces and groups, unarmed opposition, the population and the international community) in a sensitive manner, taking into account that the DDR process will be designed to address the specific needs of different categories of participants and beneficiaries. 4.2 Gender-responsive and inclusive Gender expertise should be considered an essential element of any assessment mission carried out by the UN, specifically those teams with DDR-related mandates, ensuring conflict analysis is gendered and intersectional, taking into account masculinities, femininities, gender roles, age (with a particular focus on youth), and be informed by sex and age-disaggregated statistics. If the national DDR Commission has been formed, the assessment team should include assessment of their skills and capacities related to gender expertise and recommendations for a Gender Advisor and gender capacity development. \tEquitable access shall be ensured to all those participating in integrated assessments and in how integrated assessments consider the role, needs, assets and situation of each population group with regards to the planning for and implementation of DDR. A special emphasis should be on women and girls and on ensuring that assessments provide equitable analysis and recommendations that adhere to the principle of equitable access to opportunities and equal opportunities to speak and be heard. To ensure this, dedicated technical expertise, and budget shall be allocated. Women and gender is a cross-cutting theme of DDR but gender analysis in DDR in a given context should have a dedicated stand-alone integrated assessment. Data collected shall always be sex and age disaggregated to enable analysis and informed decision-making on programme design. \tSee IDDRS 5.10 on Women, Gender and DDR for comprehensive guidance on assessments, in consultation with the IASC Guidance Note for the Gender Marker. 4.3 Conflict sensitive Assessments shall consider the conflict dynamics in which they will be conducted, including how the assessments can be biased, as well as the fact that the interventions will operate in a conflict setting as well as on the conflict setting. Potential negative effects shall be anticipated at this stage, including what and how will change regarding power and conflict dynamics. More specifically, no individuals or groups of individuals shall be put at risk because of their participation in assessments or sharing of data. The approach to the assessment shall ensure security of the transportation and confidentiality/anonymity of the data recording, sharing and analysis. 4.4 Context specific While adhering to the standards outlined in this module, the design and implementation of assessments shall be adapted to each context. 4.5 Flexible, accountable and transparent Assessments shall consider the volatile nature of the context and the dynamics in place, to be able to anticipate and follow up on any changes that may affect data collection and the reliability of the data collected. Assessments shall be implemented in a transparent manner, to build trust and buy-in by national and international actors and ensure that objectives and potential challenges are clear for all relevant actors. 4.6 Nationally and locally owned National and local structures and stakeholders shall be consulted in UN internal DDR assessments, directly engaged in data collection for integrated assessments for the formulation of national DDR documents, and participate in the validation of the results and in the monitoring of the process as appropriate. 4.7 Integrated Assessments shall support integration and unity of effort within the UN system, including humanitarian and development actors, and with national players and coordinate the participation of international partners to achieve common objectives. The integrated approach to assessments shall develop a shared understanding which shall then become the basis for continuous assessments of the context. 4.8 Well planned Given that DDR processes are implemented in fragile security environments, both risks and operational security and safety protocols shall be decided before any intervention. Regularly updating the information collected, as well as population-specific surveys (e.g., with women associated with armed forces and groups), allows for DDR practitioners to adapt to changing circumstances (also see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.30 on National Ownership, National Institutions and Processes in DDR). 5. Categories and types of integrated assessments in DDR Understanding the two generic categories of assessments (Integrated Strategic Assessments and Integrated Technical Assessments) will guide DDR practitioners leading or participating in implementing analytical work and planning. For all integrated assessments the following is mandatory: All assessments, regardless of title, level of focus and institutional leadership (mission or United Nations agency, fund or programme) must be conducted in an integrated manner if they have operational implications for multiple entities. The requirement (point 1 above) applies throughout the life-cycle of the integrated United Nations peacekeeping operation, political mission and/or good offices engagements. Risk analysis constitutes an essential dimension of all integrated assessments. 5.1 Integrated strategic assessments The IAP notes that Integrated Assessments and planning processes must take into account relevant UN policies in gender, human rights and children, including integrating a gender analysis. Integrated Strategic Assessments are mandatory in all cases where the deployment of a multidimensional peacekeeping mission or field-based Special Political Mission (SPM) is being considered. Where there is no integrated UN presence in place, a Strategic Integrated Assessment is undertaken by a head-quarters based Integrated Task Force (ITF) which may already exist or may need to be established. Integrated assessments will include the participation of the the UNCT. \tWhere DDR is a component of such peacekeeping operations, political missions and/or good office engagements DDR practitioners will participate in Strategic Integrated Assessments. This participation may include providing analysis on all DDR-relevant aspects of the context. The output of the assessment should be a multi-dimensional and multi-level (regional, national and local) analysis that establishes a basis for planning DDR in the given context or for considering alternatives to DDR where DDR processes are not considered appropriate or feasible. \tA DDR Gender expert should be part of the assessment team, unless the broader assessment team has a Gender Advisor who is able to provide technical advice in the design and implementation of gender-responsive assessment, including training as outlined below. In line with the Inter-Agency Working Group on DDR \u2018DDR Gender How to Guide,\u201d guidance, ensuring there is adequate gender expertise in the assessment team should be done through: Including international/national gender experts in the assessment team; Deploying DDR experts together with gender specialists; Training statement takers, information gatherers and interpreters on gender concepts and gender-specific methodology; Ensuring that adequate funding is available in order to allow participation of relevant experts and informants; Involving international, national and local experts and practitioners working on gender equality and women\u2019s empowerment through key informant interviews and validation sessions with stakeholders. To an integrated strategic assessment DDR practitioners will contribute at least an analysis of the place of DDR in the conflict context, its potential to contribute to meeting the challenges to peace consolidation, the UN\u2019s role in possible DDR in the given context and the UN\u2019s comparative advantage in DDR. This along with other relevant analysis may be translated into an Integrated Strategic Framework that when endorsed with will serve as a regular reference for an on-going field-based process of joint analysis and review of the UN-wide strategies and arrangements for peace consolidation. Under the guidance of the Secretary General and in coordination with field leadership, the Task Force and Task Force partners DDR practitioners may be called upon to contribute data and analysis normally gathered in the pre-analysis and situation analysis phase of planning DDR (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and as identified in point 4 above). Pre-analysis and situation analysis are steps in the DDR strategic planning process but DDR planners should not confuse these integrated assessments with the higher level Integrated Strategic Assessment required in the context outlined above and lead by the ITF. 5.2 Integrated technical assessments Assessments of a technical nature, such as technical assessment missions (TAMs) and sector assessments (such as governance, social sectors and economic sectors) initiated by either Secretariat departments or agencies, funds and programmes, are integrated if and when their scope and operational implications relate to multiple entities of the UN system. In DDR, Integrated Technical Assessments include: Integrated assessments for the DDR strategic planning phase (pre-analysis and situation assessments) conducted as part of the DDR Strategic Planning Process. These are comprehensively addressed in IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and are mentioned here in this module as a re-cap and to illustrate the kind of data, information and analysis DDR practitioners may be required to provide that is relevant upstream to integrated strategic assessments and downstream to planning a DDR process. The evolving nature of DDR and the evolution of DDR from sequentially implemented phases to complex interventions in fluid and changing environments and with complex stakeholders means that the methodological boundaries between assessments for strategic planning and integrated assessments for technical aspects of DDR are blurred. \tThe pre-analysis assessment will provide the overarching baseline data for a DDR process, considering that the process is not necessarily totally sequential, linear and clear cut. The baseline will be used afterwards to measure strategies and changes that would be directly attributable to the planned DDR process or to which the DDR process could contribute. Baseline data should be refined in the subsequent specific assessments used to plan the different interventions selected. \tWhen assessing which type of DDR process is appropriate, the initial assessment should examine whether certain preconditions are in place, including: the signing of a negotiated ceasefire and/or peace agreement that provides the framework for DDR. trust in the peace process. willingness of the parties to the armed conflict to engage in DDR. a minimum guarantee of security. The situation assessment shall always contain the elements described in Annex A of this module covering the following sections: Conflict analysis Profile of armed forces and groups and their individual members. Weapons circulation, possession, and use. Political situation and governance. Regional and international dynamics. Security. Social dynamics Gender analysis Economic, role of the private sector, infrastructures and services provided Local capacities for DDR (capacity of communities to absorb ex-combatants, availability of social services) National DDR capacities DDR relevant programme and peacebuilding interventions Process-informing integrated assessments are tailored to the planning for and implementation of specific DDR processes. Linkage-focused integrated assessments are intended to analyse DDR linkages; namely, SSR, Transitional Justice, Natural Resources, and Organised Crime. Risk assessment may be integrated into other assessments and may be stand-alone for the purposes of creating a risk matrix and mitigation strategy. The content of integrated technical assessments will vary depending on the rationale for and the focus of the assessment as well as depending on the limitations posed by the environment within which DDR will be implemented. The following presents a brief overview of some main integrated technical assessments. DDR practitioners should be flexible in how they approach technical integrated assessments and be prepared to combine foci from different assessments or use data collected in one assessment to inform or elaborate on data in a different assessment. Table 1. Overview of Main Integrated Assessments in DDR. 6. Guidance for DDR practitioners for integrated assessments The guidance for DDR practitioners presents the potential success factors for an integrated assessment, the logical approach to structuring an assessment and the generic main elements of an assessment that can then be applied to the specific areas outlined in table 1 above. 6.1 Success factors of integrated assessments DDR practitioners engaged in integrated assessments should consider the factors that contribute to successful integrated strategic assessments and apply these factors when participating in, conducting or guiding assessments in DDR. When applied to integrated assessments for DDR these include: DDR practitioners should ensure analysis is needs-driven rather than supply-driven. Any discussions about how DDR should be designed and implemented and how this impacts on UN presence on the ground should be driven by this analysis (form has to follow function). In integrated DDR the primary needs are those of participants and latterly, beneficiaries. Even where a DDR activity may target an institution (for example, capacity building national institutions with responsibility for DDR) this is done to improve the impact of DDR on participants and beneficiaries. DDR practitioners should ensure that coordination of the assessment includes close collaboration between relevant UN entities and this may include Headquarters and UN agencies in the field/UNCTs. Dedicated funding for gender expertise in assessment mission and required female personnel should be allocated at the start of planning. DDR practitioners and gender practitioners should work together to ensure design and implementation is gender-responsive and includes gender analysis. Assessments should ensure training on gender for all interviewing and documenting. DDR practitioners should ensure that when they are the lead department for the assessment that DDR staff involved clearly understand that the process of the integrated assessment shall be inclusive, transparent and conducted in a manner that fully takes into account the views expressed by all participants DDR practitioners should ensure that they and all participating parties understand that while the assessment is a joint product and should contribute to building a shared vision and understanding, the assessment process is not necessarily intended to generate consensus or an output such as a report or position paper that incorporates everybody\u2019s inputs in verbatim form. An integrated assessment can reflect substantive disagreements. DDR practitioners should ensure that their team and at least the other UN entities involved but where possible also the external participants contains the best possible experience for the particular assessment. This includes expertise in facilitating the participation of participants and beneficiaries in DDR. Where relevant DDR practitioners should take particular care to ensure facilitation expertise includes expertise in ensuring the equitable participation of women children and persons with disabilities. DDR practitioners when leading an assessment should ensure that the lead staff have extensive and successful experience with running inter-departmental/agency processes and be highly regarded by the main entities involved. The leader should also be well versed in the principles of integration and its supporting guidance. DDR practitioners should enter any integrated assessment with the understanding that it may involve a critical and honest analysis not just of ongoing UN activities in the country but also current and past efforts in DDR. This should be made evident to all participating UN entities. This aspect of the analysis should include consultations with non-UN stakeholders including government, inclusive representation of civil society (i.e. youth groups, women\u2019s groups, etc. per context), donors, international organisations and DDR participants and beneficiaries. DDR practitioners should ensure that any field mission in support of an assessment including Technical Assessment Missions are small and tightly managed so as to not overburden stakeholders on the ground. Furthermore, any assessment should leverage existing expertise and capacities on the ground including in the UNCT. DDR practitioners should ensure that if, as part of their mandate, they are undertaking technical assessments relevant to their legal mandates that they communicate to other UN entities the resulting information as appropriate and with due consideration for confidentiality including to national counterparts. In fact, while individual entities may conduct DDR-specific assessments or their mandate-specific thematic assessments may include DDR-relevant sections, the information sharing is critical for all stakeholders to build a common understanding of the operational environment and its DDR-specific aspects. DDR practitioners should ensure that any risks associated with the assessment are mitigated and that the assessment is conducted in accordance with Do No Harm principles and affording protection to participating stakeholders. 6.2 An approach to integrated assessments in DDR DDR practitioners should apply a logical approach to planning and implementing integrated assessments. This applies to setting the TOR of the assessment which essentially, is the scope of the assessment and the composition of the participating UN and non-UN entities and, where relevant, conflict affected populations. The text below presents the different stages to planning assessments. Stage 1. Establish the rationale, objectives, participants, context, deliverables and timelines for the integrated assessment and summarize it all in Terms of Reference Why. DDR practitioners shall clearly explain the rationale (the why) for the integrated assessment. When. While establishing why the integrated assessment is being done DDR practitioners shall provide a clear explanation of the importance of conducting this integrated assessment at this particular point in the life-cycle of integrated DDR. Authorising Framework. DDR practitioners shall establish the authorising framework for the assessment: an outline of the UN policy documents (this may include decision of the Security Council, Secretary-General, , Strategic Assessments, Integrated Strategic Framework) and the mandate of the lead UN entity. What. DDR practitioners shall establish the objectives of the integrated assessment. Where relevant this may refer to specific requests made by governing bodies but regardless should clearly identify what the integrated assessment is intended to achieve. This includes defining how the content of the assessment will fit with other assessments already conducted or planned for this context. Clearly establishing the objectives will normally result in DDR practitioners identifying the outputs of the assessment. For most DDR integrated assessments this is likely to be technical and analytical reports including recommendations regarding the DDR process or linkages with other stabilisation and peace-building interventions and sectors. Who. DDR practitioners leading on the integrated assessment shall establish the list of participating UN-entities (as distinct from the wider mapping on stakeholders who will participate in and be sources of data for the assessment) and where relevant other stakeholders clearly identifying the role of those who will participate in the assessment. Which entities participate will depend on which will be involved in the DDR process. Decision on which entity(ies) shall lead will be determined based on discussion with all of those involved. Terms of Reference for the mission will be established jointly. What Context. DDR practitioners shall establish the context for the inter-agency assessment. The context will vary depending on the objectives of the assessment and establishing the context will feed into or overlap with Stage 2, the implementation of the assessment. Initially it includes the policy context and the operational context for the DDR process. DDR practitioners should establish what aspects of the DDR process and DDR process implementation are relevant to the assessment and map the connections with cross-cutting issues and DDR linkages. Practitioners shall take into consideration gender dimensions. Where relevant DDR practitioners shall identify the logistic and budgetary implications of implementing an integrated assessment. How. DDR practitioners shall establish a proposed methodology for the assessment. The methodologies used in the assessment may vary considerably depending on such factors as the rationale, the objectives and the context for the assessments as well as any risks including security risks that may impact the utilisation of particular research tools, such as; community consultations or interviews with prospective DDR participants including members of armed forces and groups. . When. DDR practitioners shall establish an efficient and realistic timeline for the implementation and completion of the assessment. This shall include the delivery of outputs from the assessment. What Cost. DDR practitioners shall establish a budget for the assessment and ensure that the objectives of the assessments are in line with the resources available. In some cases, financial partners might need to be identified to support the assessment. Practitioners shall be aware that assessments may require expertise from outside the UN and the DDR partners such as through consultancies or think-tanks. This shall be factored into budgeting for integrated assessments. Stage 2. Implement the Integrated Assessment Implementing an integrated assessment may follow varied paths depending upon the rationale, objectives, participants, context, deliverables, timelines and the focus of the assessment including cross-cutting issues and DDR linkages, whether or not the assessment includes a Technical Assessment Mission, and whether or not the integrated assessment is being implemented in a Mission or non-Mission context. DDR practitioners must use good judgement and guidance from their mandate as to how the following steps are taken in any given assessment. Situational assessment. While a situational assessment is part of the strategic planning for DDR (see IDDRS 3.10 Integrated DDR Planning: Processes and Structures) most assessments will require establishing the context within which the assessment and the DDR process is being implemented. DDR practitioners will determine to what extent this includes the conflict context, an analysis of other peace-building interventions and programming and relevant comparable DDR, and a mapping of previous and existing project portfolios in the country or region by UN and non-UN entities. Situation assessments should identity data gaps and potential strategies to fill relevant data gaps during implementation of the assessment. Stakeholder mapping. DDR practitioners should ensure a mapping of all relevant stakeholders not just those who will be directly consulted for the assessment. Mapping stakeholders may include mapping the political economy of participant groups and beneficiaries including conflict-affected communities and communities where reintegration activities are planned. This aims to identify the stakeholders playing a role in peace and security dynamics, either positively or negatively. Stakeholders include national/subnational government, institutions, political parties, donors, United Nations, NGOs, international and national civil society groups, women\u2019s groups, youth groups, regional and international actors, corporate sector, customary and religious leaders, armed forces and groups, conflict actors and others. The relation to and (potential) influence on DDR should be considered (see IDDRS 3.21 on DDR Process Stakeholders). Stakeholder mapping should be tailored to the rationale and objectives of the integrated assessment. \tDDR practitioners should identify whether stakeholder mapping includes preparation to establish working committees, steering committees or consultative fora. In conflict contexts communities may be resistant to DDR and/or to the UN and so consultations and community relations may need to be managed not by UN staff but by another neutral agency or an expert with skills in conflict management. Data collection including stakeholder consultations. DDR practitioners should be aware of the many sources of data (see IDDRS 3.50 on DDR Monitoring and Evaluation) and identify the relevant sources for the integrated assessment as well as the means to maintain channels of data communication for the lifetime of the assessment or for the lifetime of DDR (as assessments may need to be repeated, updated or the data channels may be relevant for other integrated assessments). DDR practitioners should namely be aware of other assessments that have been made for this specific context and which may be relevant for obtaining data relevant for the assessment\u2019s ToR. DDR practitioners should be aware of the challenges of collecting data in environments impacted upon by fragility, conflict and violence (see IDDRS 3.50 on DDR Monitoring and Evaluation). In summary, these include: Limitations in data availability that in part arise from insecurity, the sensitive nature of the data, and the operational challenges of both mission and non-mission contexts. Particular difficulties collecting data on illicit weapons and ammunition flows and on illicit economic activities. A weapons survey is the collection and analysis of quantitative and qualitative data about weapons and ammunition, which is conducted within a specific geographical area and used to provide evidence upon which to design tailored, safe and effective arms control interventions (for further information, see IDDRS 4.10 on Disarmament). There are challenges to integration arising from the data management practices in UN entities. UN entities apply divergent approaches to data collection and management and so there is a high risk that data and analysis can become siloed within and between UN entities working in DDR even if collected for an integrated assessment. DDR practitioners should ensure that data collection should be backed-up by on-going consultation with stakeholders who may also participate in the analysis and management of data. The cost of using primary data collection over secondary data collection should be factored into the planning of the integrated assessment. \tDDR practitioners shall be aware of how DDR and DDR integrated assessments involve a wide variety of stakeholders. Integrated assessments in DDR involve consultations with stakeholders from a cross-section of the DDR \u2018ecosystem\u2019 that may range from specific needs groups (such as children associated with armed forces and groups) to technical and thematic experts (such as in logistics and budgeting technicians) to members of armed forces and groups whether signatories of peace agreements or not, to domestic and international political decision makers and influencers). DDR practitioners should be aware of how some stakeholders and implementing partners may have different and also conflicting expectations of DDR and of the integrated assessment. DDR practitioners should be aware that different stakeholders will require different approaches to consultation and so the team implementing an integrated assessment shall have the expertise to identify and, where relevant, apply the appropriate methodology to any particular consultation including participatory data collection and mapping. \tTriangulation of data is essential to ensure robust and credible evidence. This triangulation should be at various levels, between data sources, data collection methods, and specific expertise of the consultant or staff conducting the analysis. DDR practitioners shall ensure that all data collected on individuals is sex, age and where possible, disability disaggregated. \tThe following criteria ascertain the quality of the data: Validity (level of capacity of the persons in charge of collection, accuracy of the data collection protocol and level of operationalization, identification of limitations, identification of mistakes and inconsistencies). Reliability (coherence of the process through time and geographical areas, review of the collection and analysis systems, neutrality, formalization and documentation of the process). Opportunity (timeliness, accessibility, storage of the data). Accuracy (identification of missing data including sex or age, duplications). Integrity (mechanisms to limit interference, bias, data modification). Identity decision points and action points. DDR practitioners should ensure that wherever possible integrated assessments include the identification of decision points that are relevant to the design and implementation of DDR processes or that are relevant to the technical scope of the assessment. Similarly, if relevant, the assessments should include actions points and the identification of opportunities to improve the planned results of the DDR process in question. Where potential courses of actions are mapped, integrated assessments may include scenario planning to identity possible outcomes resulting from taking or not taking the mapped actions. Identify existing capacities and weaknesses relevant to decision points and action points. Where relevant DDR practitioners should ensure that integrating assessments include an analysis of existing capacities (within the UN system and external to it) that are relevant to taking any recommended course of action. For example, if an assessment recommends providing support to government to establish a new national institution with responsibility for DDR then the assessment should identify capacities, assets, opportunities and weaknesses relevant to such a course of action. Weaknesses may include potential spoilers to DDR more broadly or to the recommended course of action. Stage 3. Inform and influence decision making Regardless of the focus of any integrated assessment an objective shall always be to inform and influence decision making. DDR practitioners shall ensure that this objective follows a logical pathway from data (evidence) to decision. This means that data gathered during the assessment is clearly and transparently developed to identify factors that need to be considered in the course of decision making and then distilled further into explicit recommendations on the DDR process that is the focus of the integrated assessment or on the technical scope of the assessment. Informing decision making may include a participatory element where key stakeholders are involved in formulating recommendations. Stage 4. Monitor and evaluate In order to ensure the uptake of the recommendations of DDR integrated assessments and to collate learning from this uptake DDR practitioners may establish a participatory multi-stakeholder monitoring and evaluation framework and forum. Such frameworks and fora shall be complementary to and integrated with the monitoring and evaluation of DDR processes (see IDDRS 3.50 on Monitoring and Evaluation). \tWhere relevant DDR practitioners may use an integrated assessment to establish participatory feedback mechanisms that allow them and other relevant decision makers to reassess DDR processes, the analysis in an integrated assessment and/or the findings and recommendations contained in any particular integrated assessment. Monitoring from such mechanisms shall contribute to the decisions on whether and/or how to revise and adjust DDR. 7. Risk and security assessments 7.1 General risk assessment of a DDR process Risk is the effect of uncertainty on organizational objectives, which can be positive, negative or both. It can address, create or result in opportunities and threats. There is no risk-free pathway to achieving programmatic objectives, including in DDR. In DDR 'uncertainty\u2019 relates to our limited understanding of the future. Therefore, the identification of risks considers potential change from the expected or planned future event that might have an impact on DDR objectives. \tMost UN entities will have a formally defined internal organisational structure for Enterprise Risk Management with assigned roles and responsibilities. The role of an ERM unit/or staff member dedicated to ERM (\u201crisk owners\u201d) is to coordinate and facilitate risk management processes across the UN entity, ensuring a harmonized approach to risk management. UN entities with extensive field presence often have a network of risk focal points across their organization at field level and in HQ. The identification and managed of risk in DDR may be informed by the Enterprise Risk Management (ERM) policy or framework that the participating UN entities have at the organisational level. As with ERM, in DDR responsibility for risk identification and management should be situated at a rank at which it is possible to address senior management and have the authority to communicate across the UN entities involved in DDR. \tIdentifying and navigating through uncertainties is central to risk management. Uncertainties may impact many aspects of planning DDR including budget and timeline. By mapping, analysing and strategizing around potential uncertainties, integrated risk assessments enable DDR practitioners to understanding risks and manage them. \tDDR risk management shall enable DDR practitioners to anticipate the future of their DDR process by: Understanding the context. Thinking about what might happen, Understanding the scope and scale of the consequences of an event in the future. Making decisions that will minimize negative impacts and maximize positive ones. \tUN entities categorise risks differently. Usually this is done in the entity\u2019s ERM or Risk Register. While there are differences between UN entities, generally, risks can be grouped into a combination of the following categories that in turn may be disaggregated into various sub-categories. Risks may be interrelated; for example, an operational risk such as inadequate record keeping may have associated financial and reputational risk. Operational Risk. Operational risks include the variety of uncertainties that may arise from planning and implementing DDR. Operational risk may include sub-categories such as: financial risk, cost recovery, corruption and fraud, flexibility and opportunity management, reporting and communication, engagement of national partners in decision making, transition and exiting, and organisational risk. Strategic Risk. Strategic risk includes the variety of uncertainties linked to the DDR strategy and the issues that may arise from the strategic aspects of the operational environment in which DDR will be implemented. This may include sub-categories such as: alignment of operations with UN entity strategic priorities, roles and responsibilities among partners, public option and risks associated with the DDR Theory of Change and its assumptions. Security Risk. Security risks are managed via the UN\u2019s Security Risk Management (SRM). This is a United Nations Security Management System (UNSMS) tool to identify, analyse and manage safety and security risks to United Nations personnel, assets and operations. The SRM process is guided by a UNSMS Policy, which provides guidance to security personnel on the process. Security risk management may include sub-categories such as: armed groups, terrorism, crime, civil unrest, weapons proliferation, natural hazards, manmade hazards. Social and Environmental Risk. Social and environmental risks are potential impacts from DDR on the natural environment or communities. Social and environmental risk may include sub-categories such as: human rights, gender, community health and safety, displacement and resettlement, sexual exploitation and abuse, pollution and resource use, biodiversity and use of natural resources, built environment and heritage, and climate change Reputational Risk. Reputational risk is the potential negative impact on the UN \u2018brand\u2019 or reputation. Reputational risk can have follow-on impacts on security risks and strategic risks and may arise from most categories and sub-categories of risk. Examples of common risks often identified in DDR processes include: DDR is mandated by UN Security Council resolutions and initiated by UN peace operations despite lack of preconditions for such a programmes; The UNCT is blamed for not fully engaging in the DDR process and in particular on the reintegration component; The UN integrated approach fails to materialize on DDR; there is lack of coordination and competition for funds; Conflict between signatory and non-signatory armed groups escalates and spreads; The UN-designated lead agency(ies) on DDR in the UNCT cannot provide reintegration support in the time frame planned by the Mission responsible for disarmament and demobilization; National actors take limited or no national ownership over DDR; Implementation of DDR impacts negatively on reconciliation and justice; Ex-combatants enter illicit activities or join criminal groups instead of participating in DDR; Participants in DDR are not provided with adequate reintegration support to transition into civilian life due to lack of funding and interest of donors to invest in reintegration; National implementing partners capacity is insufficient to implement DDR; Funds are not used for planned DDR interventions (fraud, re-distribution of funds). The risk assessment process appears relatively straightforward but it is founded upon sound knowledge of the operational environment, with clear steps in risk analysis and must be undertaken in an environment where there is an understood, prescribed risk management escalation process. The risk management escalation process ensures that the risk is treated. Where the risk owner is accountable for ensuring risk is identified and managed appropriately, each treatment is assigned a Treatment Owner, the individual who is responsible for executing the activity agreed by the team to address the risk (risk treatment). The risk owner and treatment owner may be the same person. Figure 1. Risk Management and Treatment Process (Adapted from UN ERM) When a risk is analysed it should be given a score linked to the likelihood of realisation and the severity of possible impact. This may help gauge the severity of the risk and the urgency with which the risk should be mitigated. DDR practitioners who are assessing risk may use numerical scales to rate not just likelihood and possible impact but also the effectiveness of internal control. UN entities may have varying versions of risk registers used to document risk and risk treatment strategies. A DDR practitioner will be guided by the risk register adopted for a particular DDR process but such a register is likely to contain some of the following components.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "63e45385-98ef-4985-a473-423341b3d020", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": 26, - "Paragraph": "7.2 Risk and security analysis in the conduct of integrated assessments Integrated assessments should include an analysis of security conditions assumptions for the implementation of the assessments and related mitigation measures. This will serve as a basis for the broader risk management system to be implemented as part of DDR. It aims to identify threats to the DDR process and its personnel, as well as to participants and beneficiaries. \tThe assessment should identify the tolerable risks, protective or risk mitigation measures and define the expected residual risk after mitigation. Risks should be measured according to their severity and likeliness. This should cover security risks (attacks, abductions, robberies, threats), operational and technical risks depending on the specificities and sensitivity of the armed groups, and related to weapon management. \tIn developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety and that many of the activities carried out in conflict settings and related to a potential DDR process have a high risk associated with them. More specifically, the limitations and potential biases to the assessment process should be anticipated and acknowledged and addressed via broader triangulation or identification or proxy indicators while planning for integrated assessments. \tImmediate risks for the conduct of the assessment would usually include volatility of the context, security of the stakeholders involved, including protection and confidentiality of the sources, logistics, notably access to rural areas, access to geographical areas and to key stakeholders, and reliability of the data, implying the need for triangulation and an evidence-based approach (see IDDRS 3.50 on Monitoring and Evaluation). \tInterests of the armed groups, lack of neutrality and specific interests of international stakeholders, politicization and hidden political economy, overfocus on armed combatants versus other members of the armed groups and communities which have been victims. This type of limitation may imply that future programming could have reverse effects and favour some armed groups, or support indirectly the armed groups agenda, versus others. This is the case notably if a DDR process, for various reasons, only covers some armed groups while some other remain active. \tSecurity risks to the safety of personnel including external personnel or participants to the assessments. Ad-hoc security and safety protocols should be established to access to some data. The use of armed escorts can be necessary but may lead to biases of various types depending on their type. Local relays can also facilitate the data collection process but may also have their own biases or may be subject to specific local political or social constraints. Annex A: Pre-analysis and situational assessments", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "557361e3-ddad-4eef-a3a4-368d6e3260f9", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Armed Group Typologies: Assessing Armed Groups and Armed Group Membership. Analysing armed groups and the membership of armed groups is an evolving area of assessment. The following approach contains matrices for assessing the entity and the members. The matrices are underpinned by certain axioms as follows. The matrices and subsequent typology are not comprehensive; they provide lenses through which the structure and functioning of the armed group can be defined and through which the factors immediately relevant to the membership can be understood. The matrices and subsequent typology should be utilized repeatedly in the course of designing and implementing DDR. Armed groups are not static entities, they change over time in response to many different factors including both external and internal pressures and day-to-day conflict dynamics. The picture one obtains (and provisional categorization of the armed group that one makes) may change and so the typologies (or parts of them) should be repeated during DDR and any provisional categorization of the armed should be interrogated. The data collected by applying the matrices is inter-related. For example, data on foreign fighters will be connected to data on the finance of the armed group as, often foreign fighters are a source of financing or a route to raising finance for armed groups. The data collected is also related to community profiling, profiling of local and transnational patronage, profiling of conflict actors and of course the routine data normally collected in preparation for and during implementation of DDR. Our presentation of decision maps teases out these connections. All data collection and use should adhere to the Guiding Principles of the IDDRS as outlined in Module 2.10 the UN Approach to DDR and as deemed applicable to the various stages of data collection, analysis and use. The core matrix clusters the more structural aspects of an NSAG as follows: Structure Strategy Objectives Operations Tactics Ideology Geography Leadership and Command Additional roles Relationship to Community Communication Finances Historical/Cultural Importance Relationship with Criminality The matrix is read left to right, beginning with the aspect and including rationale, guide questions, potential data sources and the relevance this aspect has to DDR Processes. When concluding a provision categorization of the NSAG, the main conclusions from what the DDR practitioner identifies as key sections of the matrix should be included to form a descriptive categorization. For example: The armed group is a hierarchically structured cellular entity, with both political and military wings. The military and political wings have shared objectives. It behaves in a tactical rather than strategic manner targeting host and non-host communities through a variety of actions including IED/suicide attacks, terrorism and drones. It has international support for its use of drones as well as a foreign regional investor contributing conditional financial support. Conditional support relates to the targeting by the armed group of sites in a neighboring state that are of mutual interest to it and the foreign regional investor. It has a mix of predatory and defensive relationships with the host community and has institutionalized formal additional roles in the security sector, judiciary as well as through the war economy including the provision of social protection to some sections of the host community. Refined: on this descriptive categorization, the armed group is likely to be a hierarchically structured cellular organization with regional backing. It is socially and economically embedded. It has a divisive relationship with host communities and utilizes complex actions against host and non-host communities. And reduced: Armed group is a hierarchically structured entity, targeting host and non-host communities with backing from international actors. It is formally institutionalized in the territories under its control. Any provisional categorisation should be triangulated with national and regional frameworks including domestic legislation and policy. It should be triangulated with the relevant modules of the IDDRS and with an UN designation such as a Security Council designation and the UN mandate. Information may then be utilised during planning and implementing (if such a mandate exists) or supporting DDR Processes in the given country. Table 6. The Core Matrix", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a97a6ede-a17a-4862-a1e4-1d5843a3e1c1", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "This Armed Group Membership Sub-Matrix below is the first sub-matrix developed for the analysis of armed forces and groups. It is expected that more sub-matrices will be developed as learning is gathered from the review and use of this suite of analytical tools. The Sub-Matrix sheds light on the nature of membership of the armed groups under the following headings Overview. Recruitment and Management of Special Category Members. Support or Compensation Provided to the Membership. Loyalties. Motivations and Decisions. As with the Core Matrix, the Armed Group Membership Sub-Matrix is read left to right, beginning with the aspect and including rationale, guide questions, potential data sources and the relevance this aspect has to DDR processes. When concluding a provisional categorization of the armed group the main conclusions from what the DDR practitioner identifies as key sections of the typology should be included to form a descriptive categorization. The Armed Group Membership Sub-Matrix sheds light on the relationship of the armed group with its members as well as the more difficult to assess relationship of members with the armed group. This encapsulates an effort to better measure and understand the complex factors informing the motivation of armed group members as well as an effort to better rationalize why an armed group may attract and motivate different classifications of members. Essentially the sub-typology is an effort to view the armed group through the lens of membership and to begin to consider the varied biographical factors that influence members of armed groups to make the decisions they do. Consequently, the data collected through the application of the Sub-Matrix will have deep relevance for understanding the recruitment and retention strategies of the armed group. It will be relevant for tailoring DDR public information and community engagement and to designing ISMs and activities aiming to increase defections as well as the broader suite of activities under reinsertion and reintegration. Table 7. NSAG Membership Sub-Matrix", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "05778a9e-799a-4ba0-9852-588aae8b9a0e", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022", - "PageNum": null, - "Paragraph": "Peace, conflict and security analysis or conflict and security analysis for sustaining peace. Conflict analysis provides insights into the causes and consequences of violent conflict, the dynamics supporting or undermining peace efforts, and the needs and interests of diverse stakeholders. It provides a solid framework to engage with both volatile political situations where a conflict prevention lens is required and post-conflict settings where the consolidation of peace is the priority. In mission context, strategic assessment: a form of integrated assessment with the specific aim of identifying key challenges, strategies and options for United Nations engagement on peace consolidation priorities, as well as proposals for United Nations (re)configuration in a given context. Strategic Assessments should be undertaken whenever there is a need to formulate (or reformulate) the UN\u2019s strategy for engagement on peace consolidation priorities in a particular country. Several factors trigger it, including a dramatic change in the conflict or post-conflict crisis situation, and/or significant progress towards peacebuilding objectives. Strategic Assessments may also be undertaken as part of a broader United Nations transition triggered by a surge, drawdown or withdrawal of a Security Council mandated presence, in order to determine the most appropriate configuration for a follow-on United Nations presence. To this end, the Strategic Assessment is designed to: (a) Present a shared analysis of the conflict situation including its key factors and dynamics including key conflict factors, their dynamics and risks including, as appropriate, the development of scenarios, gender dimensions of the conflict and risks; (b) Identify the main priority objectives to address those key factors; (c) Identify the strategic options for the United Nations in order to respond to the situation on the ground (and potentially revisit the United Nations configuration). (d) A risk assessment for each strategic option, with references to challenges and potential risks to affected populations and United Nations partners. The IAP handbook includes templates for ToRs and report for the strategic assessments. Endnotes", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022.json b/static/data/json/IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022.json deleted file mode 100644 index 94607c9..0000000 --- a/static/data/json/IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022.json +++ /dev/null @@ -1,610 +0,0 @@ -[ - { - "ID": "2fdfcb47-deee-4f41-96be-1d58fd8d2c3f", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Contents Summary\t\t\t\t\t\t\t\t\t\t2 1. Module scope and objectives\t\t\t\t\t\t\t3 2. Terms, definitions and abbreviations\t\t\t\t\t\t3 3. Introduction\t\t\t\t\t\t\t\t\t\t4 4. Guiding principles\t\t\t\t\t\t\t\t\t4 4.1 Unconditional release and protection of children\t\t\t\t\t4 4.2 Gender responsive and inclusive\t\t\t\t\t\t\t4 4.3 Flexible, accountable and transparent\t\t\t\t\t\t5 4.4 Nationally and locally owned\t\t\t\t\t\t\t5 5. Considerations for budgetary planning\t\t\t\t\t\t6 5.1. Harmonization with other post-conflict planning mechanisms\t\t\t6 5.2 Minimizing duplication and maximizing synergies\t\t\t\t\t6 5.3. Flexibility, Contingency and Risk Management\t\t\t\t\t6 5.4. Accountability\t\t\t\t\t\t\t\t\t7 5.5 Transition Planning\t\t\t\t\t\t\t\t7 6. Approaches to Budgeting \t\t\t\t\t\t\t\t8 6.1 Results Based Budgeting\t\t\t\t\t\t\t\t8 7. DDR Strategic Plan and Budgeting in Mission and Non-Mission Settings\t\t9 7.1 Considerations for Financing Integrated DDR in Mission Settings\t\t\t10 8. The Peacekeeping Assessed Budget of the UN\t\t\t\t\t11 8.1. Categories that may be funded by the peacekeeping assessed budget\t\t11 9. Budgeting for DDR in non-mission settings \t\t\t\t\t\t12 10. Financial management\t\t\t\t\t\t\t\t12 10.1. National Role and Coordination\t\t\t\t\t\t\t13 10.2. Administration of Funds\t\t\t\t\t\t\t\t13 10.3. Fund management mechanisms and methods\t\t\t\t\t13 Annex A: Abbreviations\t\t\t\t\t\t\t\t15 Endnotes\t\t\t\t\t\t\t\t\t\t15 3.41 DDR Budgeting and Financing", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ffe3bff1-b971-437a-90c5-bc66d9aad096", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Summary DDR is a complex endeavour, with political, military, security, humanitarian and socioeconomic dimensions. Planning any DDR intervention is also a complex process, at the heart of which is budgeting. When budgeting for a DDR process, DDR practitioners should be aware of demands of and approaches to budgeting in challenging operational contexts. The following generic considerations apply to planning the financing and budgeting of DDR: Harmonization with other post-conflict planning mechanisms; Minimizing duplications; Ensuring flexibility; Managing risk; Incorporating accountability; and Planning support for all anticipated aspects of the DDR process in question. Several sources of funding may be brought together to support DDR. Funds may include contributions from the peacekeeping assessed budget, core funding from the budgets of UN agencies, voluntary contributions from donors to a UN-managed trust fund, bilateral support from a Member State, contributions from other agencies and donors, and the host Government\u2019s own budget. A good understanding of the policies and procedures governing the deployment and management of financial support from these various sources is vital to the success of the DDR process. In accordance with Gender Responsive UN Peacekeeping Operations Policy, when DDR takes place within a peacekeeping operation, budgeting processes must allocate adequate technical, human and financial resources for gender equality, as mandated in the Security Council\u2019s resolutions on women, peace and security. DDR practitioners should adhere to current financial management good practice, particularly results-based budgeting (RBB). RBB entails aligning resources clearly and transparently behind results. When budgeting for DDR, practitioners should justify resource allocations based on a logical model of predefined objectives, expected results, outputs, inputs and performance indicators that together constitute a logical framework. Results-based budgeting is intended to be a dynamic process, providing feedback throughout the full process cycle: planning, programming, budgeting, and monitoring and evaluation. Where there is an overall DDR strategic plan, the funding strategy of the UN also should be integrated. The integrated DDR plan shall also define process and resource management arrangements, and the roles and responsibilities of key national and international stakeholders, as well as the expected impact. Budgeting for DDR in non-mission settings will involve funding for specific but potentially wide-ranging aspects of DDR. Budgeting should be tailored to the scope of the intervention and context. DDR programme budgets, including those of agencies, funds and programmes, should include an allotment of a minimum of 20 per cent of the budget to gender-related activities and female-specific interventions, including expertise and programmes to address sexual and gender-based violence. As with the operational aspects of DDR, budgeting should include considerations around exiting and handover, where relevant. Budgeting for transitions should align with operational and strategic considerations and may include phasing down, phasing out and/or phasing over.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "96e459f0-e88c-4742-8226-764b44ec34d2", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "1. Module scope and objectives This module provides UN DDR policymakers and practitioners with guidance regarding financing and budgeting for DDR in mission and non-mission contexts. It offers guidance on budgetary considerations and planning, as well as the challenges and risks of financing DDR. The guidance in this module should not supersede the specific financial management or financial safeguarding requirements of UN entities or donors. The objectives of the module are to provide DDR policymakers and practitioners with: A description of the principles and standards of financing and budgeting for DDR, and Broad guidance on the considerations that should inform financing and budgeting for DDR in various and often complex contexts.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d62c58ae-bfa1-4506-a691-6762cbe5b138", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Results-based budgeting (RBB) is the process of linking budgetary allocations to desired results. For DDR, budgeting follows the logic and planning established through the DDR strategy and process design and is measured through the DDR results framework (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, IDDRS 3.20 on DDR Programme Design and IDDRS 3.50 on Monitoring and Evaluation of DDR). Based on the findings of the integrated assessments and situation analysis, DDR results are formulated to predict how the future situation will be different from the current situation. These results are at the heart of the DDR process Theory of Change and results framework, which are designed to guide not only the planning of the DDR process but also the budgeting. As with planning activities and logistics, they provide the internal logic for RBB and link the budget to expected results \u2013 impact, outcomes and outputs \u2013 to be achieved and the activities to be undertaken through its implementation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "73bd6fca-389c-412f-9f8a-6c8fe29f1fd3", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "3. Introduction The primary purpose of DDR is to build the conditions for sustaining peace and reconciliation at the community level. Therefore, timely, adequate, predictable and sufficient funding and effective and transparent financial management arrangements are vital to the success of DDR processes. Funding and financial management must be combined with cost-efficient and effective DDR design. DDR policymakers and practitioners should be aware of the demands of and approaches to budgeting DDR in various and often complex contexts. These include: The major DDR activities that need to be considered and their associated costs; Planning and budgeting for DDR processes in mission and non-mission settings; The standard UN financial mechanisms and frameworks used for DDR funding and financial management.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "122b898e-78f2-43c3-ad47-131dad635a12", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the planning and management of finance and budgeting for DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2e5c0b89-4f30-4942-8146-5757304dffee", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4.1 Unconditional release and protection of children DDR planning shall prioritize the immediate release of children associated with armed forces and groups, irrespective of the status of peace negotiations and/or the development of DDR programmes and DDR-related tools. While child protection agencies have dedicated budgets to support the unconditional separation of children from armed groups and forces and their further support until their successful reunification with families and social reintegration, all stakeholders must appropriate adequate funding resources to identify and support the unconditional release of children and their handing over to child protection agencies in line with their role in the DDR process. Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b77eb8c0-804f-48b3-8216-9c6bbfb58a0d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 4, - "Paragraph": "4.2 Gender responsive and inclusive DDR budgets shall be gender responsive. The formulation of a gender-responsive budget is a way of ensuring that female-specific interventions will be sufficiently funded and that equal attention is paid to females and males. To encourage accountability and transparency, budgetary processes should ensure the participation of a DDR gender adviser, women\u2019s organizations and community members. In line with the Sustainable Development Goals, all project data, including budgetary allocations, shall be capable of being disaggregated by gender. In other words, costs associated with targeting women, girls, men and boys shall be clearly evident in budgets. Gender considerations shall inform the costing and financing of DDR processes. This is particularly relevant where activities directly target former members of armed forces and groups and/or specific communities and community members. See IDDRS 5.10 on Women, Gender and DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "655a60a6-431b-4eb0-98d6-96e007e37813", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.3.1 Flexible, sustainable and transparent funding arrangements Flexible, sustainable, predictable, sufficient funds with transparent funding arrangements are essential for DDR. The multidimensional nature of DDR requires an initial investment of staff and funds for planning and programming, as well as accessible and sustainable sources of funding throughout the different phases of implementation. Funding mechanisms, including trust funds, pooled funding and the criteria established for the use of funds, shall be flexible.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "57aeb0f3-bf1b-44e3-b282-f00b9d5d2f43", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.3.2 Accountability and transparency To build confidence and ensure legitimacy, and to justify financial and technical support by international actors, DDR shall, from its inception, be predicated on the principles of accountability and transparency. These principles apply to financing and budgetary processes as well. Like the overall planning and management of DDR, budgeting and financing shall be flexible and adaptable. They shall be conducted via a transparent mechanism that can inform independent monitoring, oversight and evaluation of DDR and its financing mechanisms.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "349477f4-d9b8-41ce-b7c7-8a7d9161cc62", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "4.4 Nationally and locally owned Even when receiving financial and technical assistance from partners, it is the responsibility of national Governments to ensure coordination between Government ministries and local Government, between Government and national civil society organizations, and between Government and external partners. A national Government may make contributions to the financing of DDR from exchequer funds and consider this part of exercising national ownership. DDR planners should be aware that domestic contributions can be unreliable and difficult to predict, depending on the extent to which Government and the nation\u2019s finances are in recovery from conflict. Though financial and material resources are often located in the UN or other international partner entities and donors, some element of domestic leadership of DDR should remain with the Government and the lead national DDR institution (see IDDRS 3.30 on National Ownership and National Institutions in DDR). For example, when resources are going directly to an implementing partner, it is important that the Government participate in the oversight of the activities of that partner, both from a technical and financial perspective. If relevant, the UN and other partner agencies shall work to increase the capacity of the Government and the national DDR institutions to manage and/or participate in DDR budgeting and the project cycle of the DDR processes (see IDDRS 3.30 on National Ownership and National Institutions in DDR and IDDRS 3.40 on Logistical Support for DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "5d0a87b1-9a6c-4fde-ae63-e1ec3151d149", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "5. Considerations for budgetary planning In addition to the principles outlined above, certain generic considerations apply to planning the financing and budgeting of DDR. These are as follows.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "a87abb6c-1a77-40e3-8f92-6049b88a679a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 6, - "Paragraph": "5.1 Harmonization with other post-conflict planning mechanisms Planning and budgeting for DDR shall be harmonized with other assessment, planning and financing mechanisms that are established to manage and allocate financial resources for transition and recovery needs. Ways to accomplish this may include a single framework for managing multiple sources of funding and coordinating funding mechanisms, thus ensuring that resources are used to deal with common priorities and needs (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures).", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "c8ae43d3-6b1f-4a87-8a1a-df41811adc5f", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "5.2 Minimizing duplication and maximizing synergies The UN shall avoid duplicative, high-cost administrative structures for fund management in-country, as well as unnecessary duplication in DDR activities. Tapping into multiple budget sources should not be perceived as an exercise in competition but rather in synergy.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "da0ab391-5b4d-49ef-8105-0bc9592a7916", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 6, - "Paragraph": "5.3 Flexibility, contingency and risk management Wherever possible, cost estimates should be based on thorough assessments (see IDDRS 3.11 on Integrated Assessments for DDR). In the absence of concrete information, the UN shall make the assumptions/estimates needed to carry out planning and budgeting for DDR. The planning and budgetary process shall take into account realistic worst-case scenarios and build in sufficient financial flexibility to deal with potential political and security contingencies that may affect DDR. With appropriate flexibility, this applies to both earmarked and un-earmarked funds. Flexible financing helps UN entities to fulfil their unique mandates with the right balance of regular and other resources. Budgeting for DDR should be flexible enough to allow DDR practitioners to be responsive to the changing and challenging environments in which DDR is implemented. In principle, having access to flexible financing allows DDR practitioners to plan for complex interventions and to manage risks associated with funding sources. The absence of adequate, timely and sustained funding within a workable financial framework is often a major impediment to DDR operations. This presents the following concrete challenges, particularly to DDR planners of reintegration programmes. Funding gaps. DDR processes may experience a funding gap, which can be eight to twelve months from the time contributions are pledged to the time they are received. Where there is no assessed contribution (non-mission settings), there may be an initial gap between the development of the process and when funding is received. DDR practitioners engaged in the planning and implementation of DDR processes should be particularly conscious of the dangers of creating a time and resources gap between the disarmament and demobilization phases of the programme and the reintegration phase. Transitional reinsertion assistance and/or community violence reduction (CVR) programmes may be used as stopgap measures (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.20 on Demobilization). Uncertainty regarding the peacekeeping budget. When DDR takes place within a peacekeeping operation, the mission budget can be used to support the process. However, lack of long-term predictability of funding, lack of knowledge about what can or cannot be assumed under this source of funding, lack of clarity about the budgetary process, and reluctance of Member States to fund reintegration from the peacekeeping assessed budget may limit contributions from the regular budget to DDR. Competition for resources. Sometimes sourcing funding for DDR can create competition between what are essentially cooperating agencies with shared goals in peacebuilding. Such an approach to DDR may result in poorly planned and synchronized resource mobilization activities and duplication of administrative structures, reducing effectiveness and efficiencies and negatively impacting recipient and donor confidence in DDR. This, in turn, may diminish the willingness of donors to contribute funding to DDR. External and contextual factors. Some external and contextual factors will affect the levels of funding available for DDR. During the planning stages, DDR practitioners shall accurately and realistically assess the prospects for flexible and reliable funding. Sufficient resources shall be available for all aspects of the DDR process that are to be operationalized in a given environment. If there is no guarantee of reliable funding for reintegration, then UN practitioners shall not advocate for or start the DDR process. This applies in the case of children, whose release and protection should be unconditional. Any assessment of the prospects for reliable funding should complement assessments of the conflict, security and other risks to DDR in the given context (see IDDRS 3.11 on Integrated Assessments for DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "218d2d29-263a-4053-ac52-1131590013fb", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "5.4 Accountability The UN, together with relevant bilateral or multilateral partners, shall establish rigorous oversight mechanisms (such as audit offices) at the national and international levels to ensure a high degree of accuracy in monitoring and evaluation, transparency and accountability. These tools ensure that the use of funds meets the process objectives and conforms to both the financial rules and regulations of the UN (in the case of the assessed budget) and those of donors contributing funds to the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cb963e47-e847-4e02-8b73-2c20751a3006", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "5.5 Transition planning As established in IDDRS 3.10 on Integrated Planning: Processes and Structures, the dynamic nature of DDR processes and the principle of national ownership dictate that DDR planning enable such processes to evolve towards full assumption of DDR functions by national actors. Transition planning shall at least include a real-time assessment of the outcomes of the DDR process, the extent to which ex-combatants and the security dynamics present risks to stability, the extent and effectiveness of other existing projects that will persist post-DDR, and the availability of funds. From the planning stage, budgeting should be informed by a strategic consideration of exit. Any exit strategy should emphasize sustainability of impact and be tailored to the context in which DDR is implemented. DDR policymakers and practitioners shall plan for exit and should not assume that financing for current DDR activities will be followed by extension or additional financing. Donors may approach exiting on a case-by-case basis, or via indirect/informal or formal approaches to transition that utilize specific policy or development cooperation criteria. DDR practitioners shall explicitly plan for budgetary implications of exiting DDR for which there are three generic approaches that may or may not be combined to ensure a sustainable and responsible exit: (i) phasing down, (ii) phasing out and (iii) phasing over. Phasing down approaches involve reducing programmatic engagement over time. Phasing out approaches involve reducing programmatic engagement without handing over any aspect of the intervention to any other actors or institutions. Phasing over approaches involve transitioning aspects of the intervention to other actors or institutions. DDR practitioners, particularly those managing the operationalization of DDR, should bear in mind that decisions by donors, including Member States, to withdraw may be driven by a variety of reasons, including political motivations or shifts in official development assistance strategies. Regardless, DDR policymakers and practitioners shall plan and budget for exiting. This budget should be informed by realistic time frames, careful and mutual planning, consultation and flexibility (see IDDRS 3.20 on DDR Programme Design).", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "9b66ac16-6158-4924-a28c-bc5ad7d9a489", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "6. Approaches to budgeting Funding requirements and funding sources vary considerably, depending on the DDR process, the context in which it is implemented, and the degree of integration with other peacebuilding and socioeconomic recovery programming. DDR practitioners should apply best practices of results-based budgeting in use by the UN system as appropriate.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e1d085bd-1874-40aa-ad08-3895d447ed9c", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "6.1 Results-based budgeting Organizations define RBB in different ways; however, all definitions revolve around the concept of aligning resources behind results. In any organization, RBB is shaped by the context in which that organization operates; the way in which it is structured, including the modes of engagement at various levels of work; and the degree of flexibility around the funds it receives or mobilizes. The same applies to planning and managing DDR budgets: Practitioners should justify resource allocations based on a model of predefined objectives, expected results, outputs, inputs and performance indicators that together constitute a \u2018logical framework\u2019 (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). The results expected should justify resource requirements, which are derived from, and linked to, outputs to be delivered, with a view to achieving such results. Actual performance shall be measured by predefined performance indicators contained in the DDR results framework and social change model (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.50 on Monitoring and Evaluation of DDR). Put simply, for DDR, RBB requires: (i) use of a logical framework for informed budgetary decision-making, (ii) resources justified by results and (iii) the incorporation of performance measurements into the budgetary decision-making process. Within a results-based budgeting framework, gender-specific categories shall be included, such as: Specific results related to gender adviser(s); Gender training (for programme staff, Government officials, ex-combatants, supporters and dependants) and its inputs (trained staff, adequate facilities); Gender-specific activities (e.g., gender training, peer education programming); Female-specific activities (e.g., job training for female ex-combatants, counselling for the survivors of sexual and gender-based violence) and its inputs (trained staff, adequate facilities). DDR practitioners shall define expected results at the beginning of the planning and budget cycle, before implementation. Thus, RBB for DDR will shift focus from output accounting (activities) to results-based accountability (indicators of achievements and impact). In DDR, RBB should be a dynamic process, providing feedback throughout the full process cycle: planning, programming, budgeting, and monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "1bc9fa84-3a8e-44f5-be98-b8a98cd953d4", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "7. DDR strategic plan and budgeting in mission and non-mission settings The budgeting strategy for DDR should be part of any DDR strategic plan (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). The budget should show the division of labour and the relationships among different national and local stakeholders, UN departments, agencies, funds and programmes. The planning process to develop the budgeting component of the DDR strategic plan should include the relevant national stakeholders, UN partners, implementing local and international partners (wherever possible), donors and other actors. The budgeting component shall include a definition of DDR process and resource management arrangements, and the roles and responsibilities of key national and international stakeholders (see IDDRS 3.21 on DDR Process Stakeholders). DDR programme budgets, including those of agencies, funds and programmes, should allot a minimum of 20 per cent of the budget to all gender-related activities and female-specific interventions, including expertise and programmes to address sexual and gender-based violence.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "92d2b125-e33c-4c2b-bca2-31c30c2ff8cf", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "7.1 Considerations for financing integrated DDR in mission settings When drawing up a budget, the following considerations should be taken into account: It is necessary to accurately cost process requirements during the assessment/process design phase in consultation with all key stakeholders (particularly national authorities, main donors and partners). Where relevant and possible, costing of DDR activities should be carried out within a single framework (i.e., covering all aspects of DDR that will be implemented and all phases of mission planning and process development), including a common results-based matrix with corresponding funding sources. This framework should fit in with, and be linked to, other funding frameworks (humanitarian response plans, multiyear humanitarian response plans, Recovery and Peacebuilding Assessments, etc.), pooled funds under UN Sustainable Development Cooperation Frameworks or UN Development Assistance Frameworks, and other bilateral and multilateral sources. Budgeting for funding UN DDR activities should be carried out with a clear understanding of the division between national and international implementation responsibilities, and should be closely coordinated with the development and funding of the national DDR policy and other domestic policies, including those that more broadly encompass stabilization and conflict recovery. When the Security Council establishes a mission with mandated DDR functions, components that will ensure gender equity should be adequately financed through the assessed budget of UN peace support operations and not voluntary contributions alone. Donor harmonization should be led by the national Government, possibly via the national institution with designated responsibility or relevant line ministry, provided that the Government has capacity and that appropriate oversight mechanisms compliant with international best practices exist. As far as possible, the identification of funding needs, sources and methods should be integrated with broader post-conflict recovery strategy and funding frameworks (including management and governance structures). For DDR in mission contexts, the peacekeeping assessed budget process within the UN system is important. While other funding sources are available, the peacekeeping assessed budget process requires complex planning considerations for DDR processes in the peacekeeping context as well as synchronizing with timelines that start a year before the availability of the budget. Within the UN, DDR operational funding may be used to fund all DDR processes. DDR operational funding supports reinsertion, CVR, and weapons and ammunition (WAM) activities undertaken in UN peacekeeping operations as short-term projects. Failure to align reintegration with Recovery and Peacebuilding Assessments, national and regional recovery strategies and interventions, and a realistic appraisal of conflict dynamics and socioeconomic opportunities will exacerbate inefficiencies and create parallel processes and institutions.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "46977892-1b41-400e-ad20-403f6a3aa353", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8. The peacekeeping assessed budget of the UN The peacekeeping assessed budget of the UN is an important source of funding for DDR. It is normally established for one year and covers the four major categories of expenses: Military costs (troops, military observers and equipment); Personnel costs (international and local staff members, consultants, etc.); Operational costs (logistics and limited process implementation costs) Disarmament and demobilization (including reinsertion and, by extension, CVR and WAM).", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ce5f49a6-4230-4d18-b2ae-1e1fa2937c08", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "8.1 Categories that may be funded by the peacekeeping assessed budget Guided by the Secretary-General\u2019s definitions and General Assembly resolution 59/296, the list below itemizes the categories that may be funded by the peacekeeping assessed budget. Personnel costs (international and local staff members, consultants, gender experts, etc.); Equipment for disarmament and demobilization sites; Infrastructure and logistics; Operational costs for disarmament and demobilization; Transportation (air and ground); Rations (food supply); Civilian clothing and other non-food items; Small-arms control projects; DDR training, including of national stakeholders; Reinsertion, Quick Impact Projects; Public information activities in support of the DDR process; Reinsertion support for the demobilization of combatants for up to one year after disarmament; and DDR-related tools (including CVR and WAM).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "a66fc686-56cd-4b37-bf66-e56cd88af6db", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "9. Budgeting for DDR in non-mission settings Budgeting for DDR in non-mission settings involves budgeting for specific aspects of DDR, including advisory services and DDR-related tools (which also can be used in mission settings \u2013 see IDDRS 2.10 on The UN Approach to DDR). Budgeting should be tailored to the scope of the intervention and the context in which the intervention will be deployed. Donors should be asked to allocate funds to female-specific interventions and gender training. Resource planning should be done in full recognition of the cost of implementing activities in complex conflict environments and the absorptive capacity of domestic institutions and implementing partners. This is particularly important for community-based reintegration activities, where much of the emphasis is on direct expenditure to participants and communities and the associated communications or sensitization activities. By virtue of being a long-term intervention, normally reintegration will require dedicated funding tracks that will need support over an extended period. When reintegration is part of a DDR programme, insufficient or delayed funding for reintegration may undermine all gains made during demobilization, disarmament and Reinsertion. More generally, failure to align reintegration with needs assessments, national and regional recovery strategies and interventions, and a realistic appraisal of conflict dynamics and socioeconomic opportunities will exacerbate inefficiencies and create parallel processes and institutions. As established in IDDRS 2.30 on Community Violence Reduction, in mission settings, CVR will be funded through the allocation of assessed contributions. Therefore, where appropriate, planning for CVR should ensure adequate linkages with support to the reintegration of ex-combatants and associated groups. In non-mission settings, funding for CVR will depend on the allocation of national budgets and/or voluntary contributions from donors. Therefore, in instances where CVR and support to community-based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ab02029a-78af-4499-8ef0-da2ce9b26167", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 11, - "Paragraph": "10. Financial management Where possible, DDR should develop and utilize a single structure for managing and coordinating: The receipt of funds from various funding sources and mechanisms; The allocation of funds to specific projects, activities and implementing partners; and Adequate monitoring, oversight and reporting on the use of funds. To achieve these goals, the structure should ideally include: A coordinated arrangement for the funding of DDR that would be administered by either the UN or jointly with another organization with an agreed structure for joint coordination, monitoring and evaluation; establish a direct link with integrated DDR planning and programming frameworks; All key stakeholders on DDR, while ensuring the primacy of national ownership; bring together within one framework all available sources of funding, as well as related methods (including trust funds and pass-through arrangements, for instance), in order to establish a well-coordinated and coherent system for ensuring flexible and sustainable financing of DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "47d4fe0e-8fa1-4fb9-9f6e-890768dbcfe5", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "10.1 National role and coordination The establishment of a financial and management structure for funding DDR should clearly reflect the primacy of national ownership and responsibility, the extent of direct national implementation and fund management, and the nature of UN support. In this sense, a DDR funding structure should not be exclusively oriented towards UN management and implementation, but rather be planned as an \u2018open\u2019 architecture to enable national and other international actors to meaningfully participate in the DDR process, including through provision of the Government\u2019s own resources. To ensure national participation, meaningful national ownership should be reflected in the leadership role that national stakeholders should play in the coordination mechanisms established within the overall financial and management structure. In any given context, there may be multiple peacebuilding or stabilization projects that are financed by different donors. These projects may have been designed and implemented without an integrated assessment or shared data. In such a situation, the UN and the Government and national DDR institution should work to ensure that there is: A framework for donor cooperation; Shared analytic work and preparation of next stages in the projects, where relevant; and A focus on efficiency, which may include delegating cooperation among donors.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d8292b18-869d-4286-94b7-fa0b0f5bc562", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "10.2 Administration of funds The organization responsible for the administration of funds is responsible for establishing and maintaining appropriate records and accounts to identify financial contributions and arrangements established within the funding structure, the commitments to be financed out of the contributions, and the receipt and disbursement of these funds, in accordance with specified arrangements. If multiple mechanisms are established to manage receipt of funds (such as two separate trust funds covering different funding areas or sources), multiple Administrative Agents (AAs) will be required. To avoid confusion, the same standards and criteria for allocating, monitoring and reporting funds should be adopted.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "950e8ece-c251-4b8b-93cd-f9d60b104121", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.1 Pooled funding Under this option, participating UN organizations pool funds within one UN organization, chosen jointly by the coordination committee of the DDR financial management structure, which will assume the responsibility of administering the funds. This organization, known as the AA, will support the partners authorized to manage and implement the joint process of activities identified for these funds. Process and financial accountability for UN support to the joint process will rest with the AA. This fund management option is likely to be the most effective and efficient when participating UN organizations (PUNOs) work for the same results with a common national or sub-national partner.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "64cc3cd1-87ce-4e9b-9885-edaad74c83ff", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.2 Pass-through funding Pass-through funding can be used to support a stand-alone joint programme. Under this option, two or more UN organizations develop a joint DDR programme, identify funding gaps and submit a joint programme document to donor(s). If the donor(s) and the PUNOs agree to channel the funds through one UN organization, then the pass-through modality applies. The pass-through modality has an AA, responsible for fiduciary management and financial reporting, and a Convening Agent, which is accountable for coordination of programmatic activities and narrative reporting. In such a case, the administrative agreement would be jointly selected by the DDR coordination committee. Programmatic and financial accountability should then rest with the participating organizations and (sub-)national partners that are managing their respective components of the joint process.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b9946957-4e0d-498d-98ba-b8ad9b503fed", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.3 Cost sharing Cost sharing is a procedure for receiving and managing funds for objectives, activities and results within a specific project or process managed by a single UN agency. Given the relatively higher transaction costs involved in these arrangements, cost sharing should be used exclusively for specialized projects not foreseen in the initial process document; smaller projects for implementation before the main funding mechanisms are established; funding with special arrangements; and projects that serve as a bridge to other processes and, therefore, require different management arrangements. Although funding is tied to specific projects and UN entities in this method, its use should nonetheless be governed by the DDR coordination committee and the applicable criteria, procedures and reporting requirements.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "854bcb27-4fd3-47fc-a9b7-890cf92dd571", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "10.3.4 Trust funds A trust fund is a mechanism used to receive and manage donor funds to achieve a broad aim rather than carry out a specific project. As such, it is established as a separate accounting entity with a designated trust fund manager (an AA, in this case), as well as a governance structure that decides on the allocation of received funding, and is responsible for monitoring and evaluating how funds have been used. When located within an overall funding structure, trust funds would be linked or merged with the coordination committee and its respective subsidiary organs. In general, funds channelled through a trust fund are not initially allocated to a particular project, and can therefore later be allocated to specific projects or activities working to achieve the broad aim of the process, based on the discretion of the DDR funding structure and the process of work the trust fund is supposed to support, which can be a part of the overall DDR process (e.g., covering reintegration activities).", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "23ba6f7e-4a1d-42e1-9829-c371b9ea1319", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022", - "PageNum": 14, - "Paragraph": "10.3.5 Coordination of planning, monitoring and reporting To ensure that the DDR funding structure reflects the overall strategic direction and substantive content of the DDR process, all funding decisions and criteria should be based, as far as possible, on the planning, results, and monitoring and evaluation frameworks of the DDR process and action plan (see IDDRS 3.50 on Monitoring and Evaluation of DDR). For this reason, DDR planning officers should participate at all levels of the fund management structure, and the same information management systems should be used throughout. Changes to DDR strategy should be immediately reflected in the way in which the funding structure is organized and approved by the key stakeholders involved.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022.json b/static/data/json/IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022.json deleted file mode 100644 index 6a99f74..0000000 --- a/static/data/json/IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022.json +++ /dev/null @@ -1,705 +0,0 @@ -[ - { - "ID": "79038cfa-2cd2-4f69-8d4a-da15f9e7a447", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Contents Summary\t\t\t\t\t\t\t\t\t\t3 1. Module scope and objectives\t\t\t\t\t\t\t4 2. Terms, definitions and abbreviations\t\t\t\t\t\t4 3. Introduction\t\t\t\t\t\t\t\t\t\t6 3.1 The Challenges of Monitoring and Evaluating DDR Processes\t\t\t6 4. Guiding principles\t\t\t\t\t\t\t\t\t9 4.1 People centred\t\t\t\t\t\t\t\t\t9 4.2 Gender responsive and inclusive\t\t\t\t\t\t\t9 4.3 Conflict sensitive\t\t\t\t\t\t\t\t\t9 4.4 Context specific\t\t\t\t\t\t\t\t\t10 4.5 Nationally and locally owned\t\t\t\t\t\t\t10 4.6 Regionally supported\t\t\t\t\t\t\t\t10 4.7 Well planned\t\t\t\t\t\t\t\t\t11 5. The challenges of monitoring and evaluating DDR processes\t\t\t11 6 Building M&E into the design of DDR processes\t\t\t\t\t13 7. Monitoring DDR Processes\t\t\t\t\t\t\t\t15 7.1 Results and results chains\t\t\t\t\t\t\t15 7.2 Indicators\t\t\t\t\t\t\t\t\t15 7.3 Data source\t\t\t\t\t\t\t\t\t18 7.4 Baselines for milestones and indicators\t\t\t\t\t18 7.5 Responsible authority\t\t\t\t\t\t\t\t18 7.6 Risks and assumptions\t\t\t\t\t\t\t19 7.7 Methods of verification\t\t\t\t\t\t\t19 7.8 Types of monitoring\t\t\t\t\t\t\t\t19 8. Evaluating DDR processes\t\t\t\t\t\t\t\t20 8.1 Frame and resource the evaluation: pay attention to the evaluation questions\t20 8.2 Establish decision-making structures\t\t\t\t\t\t23 8.3 Decide who will conduct the evaluation\t\t\t\t\t23 8.4 Agree on the approach and methodology\t\t\t\t\t23 8.5 Interrogate the evaluation findings\t\t\t\t\t\t23 8.6 Learn lessons, disseminate and utilize the evaluation\t\t\t\t24 9 Evaluation checklist for DDR practioners\t\t\t\t\t\t24 9.1 Steps to consider when drafting terms of reference for evaluating DDR processes\t\t\t\t\t\t\t\t\t25 Annex A: Abbreviations\t\t\t\t\t\t\t\t26 3.50 Monitoring and Evaluation of DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c7b06091-f524-4a30-96a6-d429ab2aa68b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "Summary This module provides DDR practitioners with guidance on the principles and approaches to designing and implementing monitoring and evaluation (M&E) for DDR processes. Like DDR itself, monitoring of DDR processes may be conducted in complex and potentially risky environments. Consequently, M&E must be planned in a manner that takes due consideration of the complex, fluid and unstable aspects of the environment in which DDR is implemented and the potentially diverse needs of DDR stakeholders. DDR M&E is integral to successful planning, implementation and learning. Since DDR constitutes a multidimensional process that involves numerous national and international actors, having clear M&E frameworks facilitates coordination as well as complementarity across interventions. By effectively tracking progress, DDR practitioners are able to properly transition between DDR activities. M&E is central to ensuring the effectiveness and efficiency of DDR and providing accountability for all stakeholders. Appropriate investment in M&E from the planning stage onward will contribute to effective and efficient implementation, reassurance of national stakeholders and donors, among others, and the capture of evidenced-based learning to improve the design of future DDR processes. Gender-responsive M&E is necessary to assess if DDR programmes are meeting the needs of men and women and to examine the gendered impact of DDR. Often the gender dimensions of DDR are not monitored and evaluated effectively, partly because of poorly allocated resources, and partly because there is a shortage of evaluators who are aware of gender issues and have the skills to include gender in their evaluation practices. Additionally, given the high disability prevalence among DDR beneficiaries, DDR M&E must consider their specific vulnerabilities and the ability of the DDR program to harness their capacities and support their successful reintegration. DDR monitoring is an ongoing process within the project or programme cycle that utilizes the systematic collection and analysis of data on indicators that are mostly pre-defined in the relevant results framework. It aims to provide DDR practitioners and stakeholders with data and analysis on the interventions delivered by a variety of stakeholders, including Government and implementing partners. DDR evaluation is the systematic and objective assessment of DDR processes at specific points in time with the aim of determining the relevance and achievement of results as well as efficiency, effectiveness, impact, coordination, coherence and sustainability. The objective of any evaluation should be agreed among stakeholders in advance of commissioning or designing terms of reference to conduct the evaluation. Evaluations of DDR processes shall have a clear purpose, a strategic value and a learning function, and shall be utilized. DDR M&E can be any of a variety of approaches or combination of methods. However, fundamentally, M&E shall be both planned and budgeted for in the design phase of the DDR process. This is important to ensure that there are sufficient financial and other resources allocated to all aspects of M&E, including the design and collection of baseline data and dissemination of results and analysis.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "d1859a8d-4d09-46b3-baa9-ae8de5b1766b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "1. Module scope and objectives The aim of this module is to provide DDR practitioners with: An overview of M&E for DDR processes and the distinction between monitoring and evaluation; Guidance regarding the principles that shall inform the design and implementation of M&E of DDR processes; Guidance regarding implementing M&E in complex contexts, including mission and non-mission settings; Guidance regarding ensuring M&E takes into consideration gender, age and ability; Guidance on ensuring the institutional understanding and structures necessary to take full advantage of the information contained in M&E of DDR; and Guidance on managing M&E of DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "296995d9-fdb5-4882-9961-3aa049139542", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 3, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of the abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; \u2018may\u2019 is used to indicate a possible method or course of action; \u2018can\u2019 is used to indicate a possibility and capability; \u2018must\u2019 is used to indicate an external constraint or obligation. Participants are all persons who receive direct assistance through the DDR process, including ex-combatants and people associated with armed forces and groups, and others identified during negotiations of the policy framework and planning for a UN-supported DDR process. Beneficiaries are both individuals and groups who receive indirect benefits through a UN-supported DDR process. This includes communities in which DDR process participants resettle, businesses where ex-combatants work as part of the DDR programme, etc. DDR evaluation is the systematic and objective assessment at specific points in time of an ongoing or completed DDR process or policy, its design, implementation and results. The aim of DDR evaluation is to determine the relevance and fulfilment of objectives as well as efficiency, effectiveness, impact and sustainability. A DDR evaluation shall provide information that is credible and useful, enabling the incorporation of lessons learned into the decision-making process of stakeholders. Also, DDR evaluations may include the determination of the worth or significance of a process, activity or policy, via an assessment that is as systematic and objective as possible, of a planned, ongoing or completed DDR process. The type and scope of evaluation will depend on the DDR measures carried out in a given context. Evaluations may be ex ante (before the implementation phase), ex post (after completion) and during implementation (usually a periodic review or mid-term evaluation). They may be formative (during implementation) or summative (after completion). Formative evaluations are intended to inform ongoing activities and support improvement and/or adjustment to meet the defined objectives. Summative evaluations are intended to support accountability and learning. DDR monitoring is a continuous function that uses systematic collection and analysis of data on specified indicators to provide DDR practitioners and the relevant stakeholders in DDR (including conflict-affected communities) with information on the extent of progress regarding the DDR process and whether objectives are being achieved using allocated funds, and to support decision-making. Evaluability in DDR is the extent to which a DDR process can be evaluated in a reliable, credible fashion. Evaluability assessments call for the early review of a proposed activity or programme to ascertain whether its objectives are adequately defined and its results verifiable. Indicators are metrics \u2013 qualitative or quantitative \u2013 that provide information to monitor performance, measure achievements and determine accountability. Every indicator shall have an indicator baseline and an indicator target. Most DDR indicators should have a baseline defined during the planning stage (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.11 on Integrated Assessments for DDR). All indicators should have clear and realistic targets, which are the expected measurements of the indicators at a certain point in the future. Because of the unstable environment in which DDR is implemented, indicator targets may only be estimated and may need to be adjusted according to operational challenges and field dynamics. For instance, the inclusion of new armed groups in a peace process or the significant deterioration of security conditions may require the revision of expected targets. Indicators may be quantitative (numerical, units, proportions, rates of change) or qualitative (statements, words, case studies). In some cases, indicators can include images such as photographs of locations before and after construction activities. Quantitative data is usually obtained through direct observation, assessment or measurement. Typically, it is less subjective and more credible than qualitative data. Qualitative data is usually obtained through interviews and focus groups. A key to sound M&E is combining different types of data and mixing methodologies. Impact in DDR is the positive or negative, primary or secondary effects produced by a DDR process, directly or indirectly, intended or unintended. Impacts lie beyond immediate outcomes or spheres of intervention and can have wide-ranging ripple effects, including on the likelihood of conflict resumption. Implementing partners are organizations or institutions that are engaged in delivering aspects of DDR processes. They may include governmental organizations, non-governmental organizations, international non-governmental organizations, community-based organizations, or educational and training institutions, or communities. Implementing partners work in line with the institutional arrangements in DDR strategies and frameworks and in support of the larger goals and objectives of DDR as prescribed in the DDR strategy. Inputs in DDR are the financial, human and material resources used for a DDR process. They may be wide-ranging and include contributions from conflict-affected communities, particularly in community-based reintegration processes. Lessons learned in DDR are generalizations based on evaluation experiences that abstract from the specific circumstances to broader situations. Monitoring can contribute to lessons learned. Frequently, lessons learned highlight strengths or weaknesses in preparation, design and implementation that affect the performance, outcome and impact of a DDR process. They are usually shared and are meant to enrich the practice of future DDR processes. Outcome in DDR is the likely or achieved short- to medium-term effect of the output of a DDR process. It may include the degree to which DDR contributes to the objectives of broader security, development and cooperation frameworks. Examples include the percentage of ex-combatants reintegrated into civilian life, improvement in security conditions in hotspot areas, and a perceived reduction in the recruitment of at-risk youth. Outputs in DDR are the products, goods, services which result from a DDR process. Examples include the number of national DDR commission staff trained, equipped and operational, and the number of ex-combatants supported through training, psychosocial counselling and medication at the community level. Other examples include the number of DDR participants and beneficiaries disarmed, the number of community-based projects completed, and the proportion of communities that finished a participatory planning process. Theory of change in DDR is the model that establishes the intended impact and outcome of a DDR process and the steps between the DDR activities, outcomes and impacts. It documents the assumptions about how the DDR activities are expected to work and be impactful. The theory of change in a DDR process should guide the design of the evaluation of that DDR process. Theories of change may propose a results chain from activities to outcomes, and/or they may combine this with descriptions of mechanisms and contexts that with the DDR process may generate different outcomes. Results framework/logical framework is an explicit articulation (graphic display, matrix or summary) of the different levels, or chains, of results expected from a DDR process. The results specified typically comprise the impact, outcomes, intermediate outcomes and outputs that precede, and lead to, those desired longer-term objectives.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "d5aabb81-bda4-415a-8653-e4eea06cab0b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 5, - "Paragraph": "3. Introduction DDR processes are multidimensional and complex, with political, military, security, humanitarian and socioeconomic dimensions. They involve numerous national and international actors in the various stages of planning, implementation and M&E. DDR processes require integrated planning, effective coordination and coherent, integrated M&E. To identify what information is required, DDR practitioners should consider the anticipated results, the data needed to monitor implementation and results, the information needs of DDR stakeholders, and the degree to which DDR interfaces with and influences other conflict recovery, peacebuilding and development strategies and frameworks. There shall be careful prioritization of areas for M&E to ensure the best use of available resources. DDR M&E is integral to successful planning and implementation. Having a clear M&E framework facilitates coordination as well as complementarity across interventions. It is central to ensuring the relevance, effectiveness and efficiency of DDR and providing accountability, transparency and learning for all stakeholders. Appropriate investment in M&E at the planning stage (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures) onward will contribute to effective and efficient implementation, reassurance of national stakeholders and donors, and the capture of learning to improve the design of future DDR processes. DDR M&E should be budgeted for, and adequate capacity should be factored into staffing and personnel planning (see IDDRS 3.42 on DDR Personnel and Staffing Capacities). Monitoring and evaluating DDR should support accountability in DDR processes. Assumptions and risks should be taken into account in DDR M&E. Some questions that may help guide DDR practitioners are: What information do DDR practitioners need regularly to manage the process effectively? What information do the national DDR institution and other Government ministries or bodies need to oversee the implementation of the DDR process? What information do those involved in public information and strategic communication on DDR require (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR)? What information do donors require to monitor implementation, results and the efficient use of their funds? What type of information is required to assess social changes as well as the overall impact of the DDR process? What are the needs of communities, and how can they be met? What are the needs of DDR participants and beneficiaries, and how can they be met? What information is useful to track the fulfilment of DDR provisions in peace agreements (if these exist)? M&E supports effective DDR processes by ensuring accountability, assisting DDR practitioners to better understand impact and interrogate the social change models behind a DDR process and the assumptions therein. Throughout design and implementation, DDR M&E should be aligned with the guidance in the UN Secretary-General\u2019s Data Strategy. Evaluations should follow the Organisation for Economic Co-operation and Development\u2019s Developmental Assistance Committee (DAC) criteria and the UN Evaluation Group\u2019s norms and standards, including on mainstreaming gender and human rights, as well as adopting a conflict-sensitive, do-no-harm approach. The design should be flexible, innovative and rigorous enough to support decision-making and policy advice, data access and sharing, improved data governance and collaboration, robust data protection and privacy, enhanced efficiency, greater transparency and accountability, and better services for the participants and beneficiaries of DDR. DDR M&E shall ensure that data is collected and shared in a manner that is both conflict sensitive and mindful of DDR\u2019s objectives to produce improved outcomes at the national and sub-national levels and in the communities targeted by DDR. While being conflict sensitive and respecting the privacy and security concerns of DDR participants and beneficiaries, UN partners should promote integrated M&E data sharing across the relevant UN entities and with national institutions. Every effort should be made to design M&E in a way that supports the development of M&E capacity in national DDR institutions or line ministries with responsibility for DDR. As per the 2030 Agenda for Sustainable Development, all data for M&E of DDR processes shall be capable of being comprehensively disaggregated to allow for special attention to groups that historically have been less visible in quantitative and qualitative data. These include ethnic minorities; persons with disabilities; and women and youth as well as children, boys and girls below 18 years of age associated with armed forces and groups. Consequently, all data collection and data collection frameworks including baselines, monitoring results frameworks and evaluations should have tailored data disaggregation along these lines. An integrated approach is vital to ensure that all those involved work in synergy towards the same objectives and avoid duplication of effort. Integrated DDR is framed under the sustaining peace approach and addresses the entire peace continuum, from prevention, to conflict resolution and peacekeeping, to peacebuilding and development. DDR practitioners should therefore take into consideration other peacebuilding interventions and how DDR processes integrate or correspond with these efforts. DDR processes flow from the DDR strategy and the DDR process design (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.20 on DDR Programme Design). The DDR strategy focuses on the intersection between what is needed and what can be done. The DDR process design transfers this strategic vision to achievable activities with all the associated resources, capacities and metrics. M&E of DDR processes should distinguish what we know from what we believe. It should challenge and regularly review assumptions made in conflict transformation and peacebuilding interventions, and those made about the nature of conflict in any given context. Even contexts with experience of past DDR processes must adapt to the specific demands and particularities of new peace processes. Old solutions may not be applicable to current realities, given the interests of the parties to the conflict. Most importantly, DDR processes constantly evolve in response to changes in DDR structures, funding mechanisms, political support and international involvement. All these aspects require adjustments of M&E frameworks. DDR M&E should consistently strive for quality data and analysis that directly lead to more effective ongoing DDR processes and ways of working. Learning from DDR through strong M&E strategies should be institutionalized and have real impact on the development and implementation of current and future DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "2de2a2fa-6b77-4ff4-abf5-124b8634cb55", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "4. Guiding Principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "51c790ba-f389-4369-8d67-0baa1eacc9f7", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 7, - "Paragraph": "4.1.1 Unconditional release and protection of children M&E in DDR shall yield adequate information to track the progress of the release of children associated with armed forces and groups, their handing over to child protection agencies and their progress through the DDR process until their reunification with families and reintegration into society, including the tracking of the provision of child-specific services and addressing children\u2019s needs throughout the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "67d6b3b1-2c48-4456-abd2-20822df6b6ce", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.1.2 In accordance with standards and principles of humanitarian assistance M&E of DDR processes shall be carried out in compliance with humanitarian principles. These are humanity, neutrality, impartiality and independence.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "4110ba20-f746-4ada-8fbb-afcbd5ae0b8a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.2 Gender responsive and inclusive DDR M&E shall include consideration of where gender intersects with other qualities (sexuality, gender identity, ethnicity, indigeneity, immigration status, disability) to allow for the development of tailored context-specific DDR M&E processes. Field teams for M&E shall include women (see IDDRS 5.10 on Women, Gender and DDR). M&E of DDR processes shall reflect the extent to which a gender analysis has concretely influenced the design and implementation of the process. Planning for DDR processes shall include an analysis of the gendered assumptions about the roles of DDR stakeholders (including participants and beneficiaries), and M&E should assess the accuracy, use of and outcomes from such an analysis. M&E of DDR processes shall be based on sex-, age- and disability-disaggregated data and consider gendered dimensions of the outcomes and impacts (for example, possible differentiated impacts on women and men and how the process contributes to gender equality). Gender-sensitive monitoring and evaluation is used to reveal whether a DDR process addresses the different priorities and needs of women and men, to assess if it has an impact on gender relations, and to determine the gender aspects that need to be integrated into monitoring and evaluation systems. Planning for DDR processes shall include explicit gender equality objectives and indicators and, to be effective and gender responsive, DDR M&E should measure these indicators (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures).", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "c9788ef2-da09-4cb1-87c2-f02cad8ac2ef", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.3 Conflict sensitive DDR M&E may be undertaken in insecure and risky environments where participation not just in DDR but also in M&E may present security risks to stakeholders (not just evaluators). M&E of DDR processes shall be conflict sensitive and not unnecessarily place anyone at risk. M&E of DDR processes shall consider the conflict sensitivity risks of DDR design and implementation. That is, it shall consider where and how the design and implementation of DDR processes might have created harm and interacted with other drivers of conflict and instability. Also, DDR M&E shall consider how the design and implementation of DDR processes have positively impacted the drivers, dynamics and stakeholders identified in the conflict assessment.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "01fedc30-aace-4764-ae67-c876320572d4", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.4 Context specific DDR design shall be flexible and context specific in order to address local, national, regional and global realities. M&E of DDR processes shall consider the nature of armed groups, conflict drivers, peace opportunities, gender dynamics, the presence of children associated with armed forces and groups, and community dynamics. M&E of DDR processes shall be designed such that they take local conditions and the information needs of communities into account. M&E shall be tailored not only to the type of DDR process but also to the specific context in which that intervention is being implemented. Where possible and relevant, the DDR M&E strategy shall contribute to building the capacity of domestic institutions and ensuring domestic ownership of DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "d71919ea-2bbf-4885-8e3c-cb76107d64ca", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 8, - "Paragraph": "4.5 Nationally and locally owned National- and local-level actors shall be included in the design and implementation of DDR monitoring and evaluation. Key stakeholders shall be actively involved in reflecting upon and assessing the progress of their project and, in particular, the achievement of results. The process of M&E should be an opportunity to actively involve various categories of program stakeholders in the critical analysis of successes and constraints and the formulation of conclusions and lessons learned, as an alternative to a mechanical and expert-driven data analysis. Local communities shall be active participants in the M&E process \u2013 for example, through the establishment of local committees \u2013 and not only sources of information. M&E is a process of collaborative problem-solving through the production and use of knowledge, and through corrective action based on shared decision-making involving all stakeholders; therefore, the focus shall be on building stakeholders\u2019 capacity for analysis and problem-solving. A process aimed at implementing any recommended corrective actions shall be put in place. A participatory process shall entail the development of techniques designed to be used by community members and other local-level stakeholders as part of an M&E activity, such as visual self-evaluation tools, testimonials, photographing the evidence, etc. In contexts where national capacity is weak, Government shall be supported to develop M&E capacity for DDR.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f1ead07e-9ca8-40a8-bde8-b57637cfe4f2", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "4.6 Regionally supported Where appropriate, DDR practitioners shall engage regional stakeholders, including neighbouring countries and regional organizations, in M&E of DDR (see IDDRS 5.40 on Cross-Border Population Movements). Regional results frameworks shall be developed in close coordination with respective authorities, agencies or the regional entities.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "e33e3024-9b4b-4640-8b7b-291a3f25271b", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "4.7.1 Safety and security Given that DDR is aimed at groups that are a security risk and is implemented in fragile security environments, both risks and operational security and safety protocols should be decided on before the design, planning and implementation of activities, including monitoring and evaluation activities. DDR M&E should include the security and safety needs of UN and partner agency personnel involved in DDR operations, DDR participants (who will have many different needs) and members of local communities. Furthermore, M&E of DDR processes shall maintain an awareness of the impact of instability and security dynamics on the performance of DDR processes and the sustainability of results. This should inform ex ante evaluative examinations of DDR design.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "9e2edc35-420b-4182-a039-d544f75506bf", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 9, - "Paragraph": "4.7.2 Evaluability assessment An evaluability assessment ascertains the extent to which an activity or project can be evaluated in a reliable and credible fashion. An evaluability assessment informs the time of an evaluation and improves the prospects for an evaluation producing useful results. The assessment may be conducted during the planning stage (of the theory of change), or during the creation of the results framework. Data availability and the views of stakeholders should be taken into account. DDR practitioners should plan for evaluability assessments and identify the criteria to be investigated \u2013 for example, availability of data and challenges in causal attribution. DDR practitioners can then make informed decisions as to the range of evaluation options that may be utilized for a DDR process.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c730e311-2220-4fcd-b662-1cd89cf23a59", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "4.7.3 Public information and community sensitization Subject to the appropriate controls (including around security and sensitive data), information and analysis from DDR M&E shall be disseminated externally to a wider audience (including conflict-affected communities) and with appropriate contextualization of the information contained in the analysis. A dissemination and utilization strategy should be planned in advance of conducting an evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ca621c50-f57a-48e1-862f-755bd4627c4a", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 10, - "Paragraph": "5. The challenges of monitoring and evaluating DDR processes M&E in DDR faces particular challenges: A lack of robust evidence about what actually works in DDR and the results chain between inputs, activities, outputs and outcomes. This is a common challenge for interventions in conflict, stabilization and peacebuilding, not just DDR. In DDR it may be the case that some support is delivered on a humanitarian basis, including support to children associated with armed forces and groups. Though this support may fall outside the results framework or theory of change being utilized to manage DDR, it should not prevent its delivery. Limitations in data availability that arise in part from insecurity, the sensitive nature of the data, and the operational challenges of both mission and non-mission contexts. Consequently, it can be difficult to establish accurate baselines, collect data to verify progress and create realistic targets. Emerging areas of new learning that eventually will need to be incorporated into regular day-to-day monitoring, evaluation and learning. Currently in DDR, these areas include how to better understand armed forces and groups, the motivations and decisions of their participants, and how both of these areas of concern impact the effectiveness of DDR. DDR practitioners should be aware of the limitations in their understanding and emerging approaches to help address those limitations. Challenges collecting data on illicit weapons and ammunition flows. A weapons survey is the collection and analysis of quantitative and qualitative data about weapons and ammunition, which is conducted within a specific geographical area and used to provide evidence upon which to design tailored, safe and effective arms control interventions. (For further information, see IDDRS 4.10 on Disarmament.) There are risks inherent in conducting weapons surveys. Survey staff (researchers) and survey subjects (interviewees) can be exposed to danger while conducting, or as a consequence of participating in, surveys. Respondents can also feel afraid when asked questions on sensitive subjects and, as a result, can provide inaccurate information. Survey planners and M&E staff shall take action to reduce such risks to an acceptable level and to mitigate challenges to acquiring accurate information. Data management practices and policies of UN entities. UN entities apply divergent approaches to data collection and management, including for M&E purposes. Consequently, there is a high risk that data and analysis can become siloed within and between UN entities working in DDR. A data sharing agreement and/or memorandum of understanding may be required to facilitate the sharing of information among actors in line with data protection policies. The complexity, fluidity and uncertainty of the contexts in which DDR is designed and implemented. This can lead to challenges verifying causal chains, as conflict actors and allegiances can shift during DDR, making assumptions in DDR theories of change highly challenging. New armed groups may decide to join the peace process, increasing the demand for interventions while funding remains unaltered. In addition to political crisis and the deterioration of security conditions, DDR processes can be affected by sudden budget reductions. Security and safety risks of personnel, including external personnel. These risks can have cost implications for conducting M&E, and remote approaches may be required. Changes in conflict dynamics may require the reallocation of resources and investment in security mechanisms to ensure safety. The highly politicized nature of some DDR stakeholders, the impact of hidden political economies, and inter-group and intra-group dynamics can have a significant impact on the data collection and analysis required for monitoring and evaluation. The sustainability of outcomes from DDR processes ultimately depends on broader socioeconomic development, which is beyond the capacity and lifespan of DDR. While DDR processes contribute to security and stability by creating tailored incentives, DDR is not meant to address structural and societal problems. DDR involves a wide variety of stakeholders. Some stakeholders or implementing partners in DDR may be unfamiliar with robust M&E or may have different (perhaps conflicting) expectations of and methodologies to measure results. When possible, M&E of DDR should be built on consensus regarding what to measure and how. DDR interfaces with multiple systems, including security systems, which themselves are highly complex, with differing parts and functions. DDR M&E should be designed and implemented based on the best understanding possible of the systems with which DDR interacts and how those systems may influence results and implementation. Monitoring and evaluating where specific needs groups are targeted (for example, women; children, including children associated with armed forces and groups; youth; and persons with disabilities or chronic illnesses) may present additional safeguarding and ethical challenges, particularly where there are multiple intersecting vulnerabilities, including gendered vulnerabilities. At all times, a rights-based approach to conducting research with vulnerable groups shall be applied. All M&E shall be conducted in full compliance with ethical standards for engaging these populations.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "56e32dd9-1334-4ea4-9fdd-dc9bdb3eb400", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "6. Building M&E into the design of DDR processes M&E shall be an integral part of all phases of the design and implementation of the DDR process. This means that DDR practitioners shall take due consideration of M&E from the planning and assessment stages (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures and IDDRS 3.11 on Integrated Assessments for DDR) through implementation and transition. This approach to M&E should be institutionalized across UN entities and reflected in standardized M&E procedures, management information systems, feedback loops and responsiveness to findings. Following are typical institutional steps for M&E that can guide the sequencing of the various aspects of DDR monitoring and evaluation. During planning and assessment stages: Include an assessment of partner capacity and needs in M&E (this includes Government); Include a review of M&E capacity, including gender-responsive M&E capacity, and needs of implementing and resource partners. During the design stage: Ensure the DDR process is supported by a results framework that has been developed inclusively (including through the participation of Government) and with high standards, as this is the starting point of quality monitoring and evaluation; Develop gender-responsive and disability-inclusive M&E strategies; Design monitoring systems (include, if necessary, management information systems); Begin M&E capacity-building if required and feasible. During implementation: Undertake an evaluability assessment; Gather baseline data disaggregated by sex and age; Collect and review monitoring data disaggregated by sex and age; Conduct quarterly and annual reviews of overall progress towards objectives and other issues; Follow up baseline studies with subsequent longitudinal studies where relevant; Conduct mid-term process review; Conduct final evaluation(s). During transition/exit: Assess efficacy, effectiveness and impact of transition strategy and implementation; Follow up on final evaluation(s) and respond where necessary; Distribute learnings; Apply lessons to current and future DDR processes.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "823e1c2b-a26a-4277-b384-2778ed5cd4f0", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 12, - "Paragraph": "7. Monitoring DDR processes DDR monitoring is a continuous function that uses systematic collection and analysis of data on specified indicators to provide DDR practitioners and the relevant stakeholders in DDR (including conflict-affected communities) with information on the progress of the DDR process, on whether objectives are being achieved using allocated funds, and to support decision-making. It can include activities delivered by the UN as well as overall assessment of interventions delivered by a variety of stakeholders, including Government and implementing partners. Monitoring involves routine data collection around indicators that reflect the theory of change of the DDR process. Normally, indicators and data collection around indicators are collated in the results framework for the DDR process (also known as the logical model or logical framework). A results framework should include the following: A results chain; Indicators; Data sources and collection methods; Baselines, milestones and targets; Responsible authority; and Risks and assumptions.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e443ba35-be91-4cfb-abf8-cae11935e882", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "7.1 Results and results chains The results chain can be conceived of as the map of the solution a DDR process is applying to a series of problems, ranging from such issues as weapons held by armed groups to lack of economic, social and political reintegration of former members of armed forces and groups. The results chain links the intended outcomes and impact (results) of a DDR process to its activities and outputs (proposed solutions to the problem) as outlined in the theory of change of the particular DDR process. The results chain shall identify the steps that will indicate progress towards the intended results of the DDR process and present these as a results framework. In DDR, as in other interventions in complex contexts, the pathway from identifying the problem to achieving the solution can be long and complex and involve interrelated DDR activities and other peacebuilding interventions. In the context of the results framework, the solution is constituted by the DDR process\u2019s inputs, activities and outputs. Results can be phrased as: Change at the level of impact: the positive or negative primary or secondary long-term effects to which a DDR process will contribute either directly or indirectly, intended or unintended. DDR practitioners and policymakers shall understand that in DDR, a single actor will not on its own achieve the intended change at impact level. The change is something to which DDR contributes. Hence, it is important to understand the other interventions in the stabilization and peacebuilding context that are implemented alongside DDR. Change at the level of outcome: the likely or intended short-term and medium-term effects of the outputs of a DDR process. Outcomes should be clear and simple and should be achievable in the lifetime of the DDR process. Due to the complexity of the context in which DDR processes are implemented, outcome-level changes may be sequential, with one outcome flowing from (and dependent upon) the previous outcome. Change at the level of output: outputs are the tangible products, goods or services that result from the activities of a DDR process, such as increased capacity or increased skills. At the first level, the solution in the results chain is driven by the outputs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8aeea063-378a-4b46-923c-822dd4e69d3e", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 13, - "Paragraph": "7.2 Indicators Indicators in a DDR process results framework describe how a particular result will be measured. Essentially, indicators are pieces of data that, when recorded, give DDR practitioners guidance on the progress towards outputs, outcome and impact. Indicators can be quantitative, qualitative, intangible and/or subjective. DDR indicators with indicator baselines and targets need to be defined at the planning stage with the participation of all key stakeholders, and should be included in the DDR project or programme document. DDR requires indicators at all result levels. There are differences between input and activity indicators (measuring inputs and activities), performance indicators (measuring outputs and outcomes) and impact indicators (measuring impact). To be useful for performance monitoring, indicators need to fulfil certain minimum standards. A commonly used set of criteria is \u2018SMART\u2019: specific, measurable, attainable, relevant and time bound. SMART indicators can capture both quantity (for example, the percentage of former members of armed forces and groups who are minors) as well as a certain quality (for example, the level of satisfaction with the reinsertion package). An indicator should be direct and closely linked to the result it attempts to measure. For example, if the output is \u201810,000 former members of armed groups provided with reintegration assistance\u2019, a direct indicator would be \u2018the number of former armed group members provided with reintegration assistance\u2019. Where direct data cannot be reliably collected, an indirect/proxy indicator can be used. This is typically necessary if a result is an abstract concept. For example, a DDR programme can measure impact (\u2018security situation improved\u2019) by using proxy indicators (violence, confiscated ammunition, confiscated weapons). When relevant, the indicators shall be sex disaggregated. Specific indicators to measure how the process fulfils its commitments on gender equality and women, peace and security should be utilized. Table 1 summarizes indicators for DDR programmes transitional weapons and ammunition management (WAM) and community violence reduction (CVR). These indicators are illustrative and may be applied depending on the design of the DDR process (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). TABLE 1: DDR PROCESS MONITORING INDICATORS", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "72d1d504-5fb2-4e44-ba38-703074290930", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.3 Data source When developing indicators for a DDR process results framework, DDR practitioners shall ensure that there is a viable and reliable source for the indicator. At the level of output, data should be easily available. For outcomes and impact tracking, indicators can be more dependent on the feasibility of collecting data from sources external to the DDR process. Data can be primary (collected by the DDR team, implementing partners or consultants) or secondary (collected from open source, geographic information systems and other platforms). UN databases and those utilized by implementing partners can provide data for DDR monitoring and evaluation. DDR practitioners should be aware that these databases may not have interoperability, and data may not be routinely shared or integrated.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "79ba9a61-0939-4315-9eca-e7a8cc928df5", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.4 Baselines for milestones and indicators Baselines should be selected and set for each milestone and each indicator. The baseline should be established during or soon after the design phase of the DDR intervention. Revising baselines during implementation can negatively impact the results chain. By design, the baseline is the starting point, and the monitoring of DDR should be flexible and adaptive to the environment and the impact this has on implementation of DDR processes.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e1f090e9-f559-4fd2-bafc-d23522d50514", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.5 Responsible authority Results frameworks for monitoring DDR processes should be updated regularly, at least quarterly, by a DDR core team member with responsibility for monitoring and evaluation. Given the highly complex and changeable contexts in which DDR is implemented, the results framework may need more regular updating and modification than is the case in other interventions.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3c48e679-e430-48d9-b554-7314996ea01c", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.6 Risks and assumptions The results framework should record risks and assumptions relevant to the DDR process. Arguably, the interrogation of assumptions is the aspect of DDR processes that receives the least attention in monitoring and evaluation. For each output and outcome, assumptions that relate to external factors should be noted. These assumptions may be environmental, political, security-related, economic or relevant to some other dimension. They need to be reviewed and updated on a regular basis. Similarly, risk mitigation measures should be noted. Risks and risk drivers are monitored throughout implementation, and regular reflections by DDR practitioners contribute to reviewing existing risks and exploring risks (and threats) that are likely to emerge. UN entities track risks in different ways, but most utilize some form of risk register or risk log that should be part of the routine monitoring of the DDR process (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures). Risk monitoring should include established feedback mechanisms that are triggered when unanticipated risks emerge or the threat level of existing risks rises.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f2bf699a-877b-4b1d-a16d-5797dfd3d557", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 16, - "Paragraph": "7.7 Methods of verification Means of verification/data sources are the mechanisms, institutions and/or instruments that generate the data required by the indicators used for M&E. Through identified means of verification, practitioners can continuously identify programme and operational bottlenecks that impede progress, as well as opportunities to accelerate the achievement of results. In DDR, a core management information system may be a source of verification for indicators on the output level. For indicators on security, the means of verification might be the monthly hospital reports or police reports on homicide rates. Other means would include administrative data from implementing partners and national surveys.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "28070004-106f-42ae-a1d3-5e614a622162", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 17, - "Paragraph": "7.8. Types of monitoring Monitoring can include performance monitoring and monitoring context. Performance monitoring is the most conventional form of monitoring and focuses on aspects of the DDR process that are more or less within the control of the agency or its implementing partners. These include monitoring outputs for quality, quantity and timeliness as well as overall progress towards the achievement of outcomes or objectives. Essentially, this is the monitoring of implementation of the DDR process. Context monitoring focuses on the broad conflict, security, political and other factors over which the agency and/or its implementing partners have no control but that are relevant to the implementation and performance of the DDR process. This type of monitoring may include information about other non-DDR programmes or projects being implemented, and macroeconomic, security, social and political conditions in the DDR context.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dd2a48b2-3937-46c9-a335-0441ffc20c94", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8. Evaluating DDR processes Evaluating DDR processes is the systematic and objective assessment of the process at prescribed points in its design and implementation, with the aim of determining the relevance and achievement of results as well as efficiency, effectiveness, impact, coordination, coherence and sustainability. The objective of any evaluation should be agreed among stakeholders in advance of commissioning or designing terms of reference for the review. Evaluation of DDR processes should be independent, rigorous and transparent. The four key functions of evaluating DDR processes are: To provide accountability for whether the DDR process has achieved results and to what extent this has been done through the efficient use of resources; To provide broader learning about the why, how, who, where and what of the DDR process so that this information can inform the revision of the current intervention and provide input into future interventions and the work of other DDR stakeholders; To highlight the strengths and weaknesses of the DDR process; To recommend restructuring of the DDR process based on a sound analysis of implementation, progress towards achieving objectives and reacting to (and anticipating) the shifting dynamics of the implementation environment. Evaluation shall be planned and budgeted for in the design phase of the DDR process (see IDDRS 3.41 on DDR Budgeting and Financing) to ensure that there is a financial allocation for it. This type of planning and budgeting informs the design and collection of baseline data (by asking what data should be collected \u2018up front\u2019). It ensures the evaluation will be utilized and learned from and will feed back into current and future DDR interventions. Evaluations of DDR processes shall have a clear purpose, a strategic value and a learning function and shall be utilized. The following are some main steps in conceptualizing and managing the evaluation of DDR processes. FIGURE 1: MAIN STEPS IN CONCEPTUALIZING AND MANAGING THE EVALUATION OF DDR PROCESSES", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ad100177-9dde-4233-ba57-1a8ca58ebb34", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "8.1 Frame and resource the evaluation: pay attention to the evaluation questions Framing the evaluation requires DDR practitioners to apply the standard DAC criteria (relevance, efficiency, effectiveness, impact, sustainably, coherence and coordination) and also to identify: The purpose. For example, is the purpose of the evaluation to allow for mid-implementation course correction, or is it to increase knowledge of the impact of the DDR process and how this can inform other interventions? The stakeholders. The stakeholders are not limited to the UN but include the actors in the DDR process as well as DDR participants and beneficiaries. DDR practitioners should identify stakeholders that can feed into the evaluation process, such as key experts and independent reviewers. The time frame. The timing of an evaluation is dependent on the context, the purpose of the evaluation and the everchanging nature of the evaluability of the DDR process. DDR practitioners should synchronize the evaluation with the programme/project cycle of the DDR process to ensure that it is timely and that there is an opportunity for the findings to feed into the process or into future interventions. What to evaluate. This is driven by the purpose of the evaluation, and it will influence the approach used. For example, if the \u2018what\u2019 is the impact on the lives of DDR participants, then the approach will be an impact assessment that will likely combine quantitative and qualitative methods to measure changes in the social, economic and political aspects of their lives (often in comparison to wider communities and/or control groups). For whom or what entities is the evaluation conducted? The audience of an evaluation may be wider than but includes the primary users of that same evaluation. The primary users are the key target group for the evaluation. They are those individuals or groups who are affected by the outcome of the evaluation and are able to act on its analysis and findings. They should be clearly identified at the outset, clearly communicated to the evaluator and remain in regular contact with the evaluator so that the evaluation addresses their needs and has the best chance of being utilized. As discussed below, there are many approaches and methods to evaluation. Some core types of evaluation include impact evaluation, implementation evaluation, efficiency evaluation, most significant change evaluation, thematic evaluation, and outcome mapping. Aspects of other approaches may be incorporated. These include experimental, quasi-experimental, random control tests, qualitative comparative analysis, participatory evaluation, systems mapping and network analysis, including via new data analytics and \u2018new\u2019 data. Impact evaluation focuses on the longer-term outcomes of the DDR process. Normally, it combines quantitative, qualitative and desk-based methods, such as household surveys, key information interviews, focus groups and literature reviews to measure the impact of an intervention. It may be repeated over time to establish comparative and longitudinal perspectives on the intended and unintended impacts of the DDR process. Implementation evaluation focuses on how the DDR process has been or is being delivered. Normally, it applies standardized criteria (such as the revised DAC criteria) to evaluate implementation. It may use mixed methods, such as quantitative data analysis, qualitative consultations with key stakeholders, and efficiency analysis of budgets and financial management. Efficiency analysis (benefit-cost and cost effectiveness) is an economic approach to evaluation that will compare the relative costs and outcomes of the DDR process being evaluated. The primary objective of an efficiency analysis is to determine whether the benefits of an intervention outweigh the costs. For DDR, this may be a complex process given the challenge of establishing a benefit-cost ratio across the participants and other beneficiary populations and finding comparative DDR interventions in other locations with which to compare costs. Furthermore, the impacts of DDR include intangible impacts such as empowerment, peace and inclusion, which are highly challenging to monetarily assess. Most significant change is a core participatory tool to evaluation that utilizes testimony from DDR participants to identify stories of change that can then be shared more widely with stakeholders, including implementers. This approach collects stories (which may be oral, written or communicated through images or performance). As with other approaches, technology can be used to analyse written and spoken stories to help identity key issues, trends and topics of importance. Thematic analysis is based on a specific theme, such as region, sector, gender, security or livelihoods. It utilizes evaluation criteria specifically established for the theme. This may include analysis that extracts trends and problems common to a particular issue or compares projects and categorizes them to extract common features and good practices. Outcome mapping is a common participatory tool for evaluation and programme design. It focuses on the outcomes for individuals, groups or organizations with which the DDR process has direct contact. It is a qualitative approach centred on collecting and analysing testimony from key stakeholders.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "27bcb9ba-8fc2-4268-ac38-4649450d4d3d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.2 Establish decision-making structures DDR practitioners shall establish the appropriate decision-making structures for the evaluation. This could be accomplished by convening and utilizing an advisory group of internal and/or external institutional stakeholders and experts. It may also include drawing an advisory group from beneficiary communities.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "c2cb1d2f-99aa-4992-817d-e1da11543abd", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.3 Decide who will conduct the evaluation In DDR, evaluations are normally external and independent. They can include hybrid models where an external, independent expert or team works in close cooperation with internal staff. When deciding the \u2018who\u2019 of DDR evaluation, DDR practitioners should be guided by the purpose, the approach and the methodology.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b903e98e-fa5e-45da-b3fa-02fd227a3905", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 20, - "Paragraph": "8.4 Agree on the approach and methodology There is an extensive body of approaches and methods for evaluation, many of which will be applicable to DDR processes. DDR practitioners should access internal expertise, the expertise of partners to DDR and the expertise of consultants when deciding on the approach and methodology for evaluating a DDR process. First and foremost, all evaluations of DDR processes shall adhere to ethical and quality standards (particularly data protection) and be gender and conflict sensitive. Evaluation methods are the specific tools and approaches for collecting and analysing data. In some cases, a design may be closely linked with a set of methods. Generally, evaluation methodologies for DDR processes are derived from qualitative, quantitative and mixed method techniques. DDR practitioners should remain open to innovative evaluation methodologies, including the use of virtual spaces, virtual tools to analyse dynamics such as perceptions and conflict networks, participant observation, big data and other approaches, methods and tools.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "92333268-9e4e-42bc-83b9-7636aef56bb7", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "8.5 Interrogate the evaluation findings DDR practitioners shall duly examine and interrogate the findings of evaluations of DDR processes. This includes engaging with the evaluators and the evaluation process to check and quality control data, and, where relevant, running their own analysis of quantitative datasets (such as regression, sequential analysis, scatterplot and correlation). DDR practitioners should ensure that, where relevant, the evaluation includes an analysis of counterfactuals, causal links (including those already identified in the social change model) and possible alternative explanations (and alternative contributory factors) for the results that have been identified.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2b65019f-aaa4-444f-bbb3-97f727c7bb3d", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "8.6 Learn lessons, disseminate and utilize the evaluation Lessons learned are generalizations based on evaluation experiences that abstract from the specific circumstances to broader situations. Frequently, lessons highlight strengths or weaknesses in preparation, design and implementation that affect an intervention\u2019s performance, outcome and impact. Learning shall provide a constructive lens through which DDR practitioners can view existing or future processes to ensure that DDR adapts, evolves and improves over time. Subject to the appropriate controls (such as those around data sensitivity), evaluations should be disseminated and, where relevant, their analysis and lessons should be synthesized with other M&E outputs. Evaluations and, in particular, lessons learned should be acted upon. If DDR practitioners do not explore and apply lessons learned, the evaluation has little if any value. Evaluation (and monitoring) should contribute to better DDR processes, greater learning, improved accountability and greater impact for participants and beneficiaries. Evaluation (and monitoring) should enable DDR practitioners to devise and implement strategies and decisions in the highly complex and often insecure contexts in which DDR is implemented. Finally, evaluation (and monitoring) of DDR should improve the capacity of national Governments and domestic stakeholders to evaluate and monitor not just DDR but other peacebuilding interventions sustainably and to the highest standard.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "fa7abcb2-f79b-4268-a14c-fc7dfa086fc0", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 21, - "Paragraph": "9. Evaluation checklist for DDR practitioners Who controls the process of commissioning and sharing the evaluation? Can local stakeholders (including field-level international programme staff) input into its design and management? Are the primary purpose and scope (programme/sector/system/theme) of the evaluation clear, and has it been agreed by all key stakeholders? Is the methodology appropriate, and has it been agreed with the evaluator(s)? Do the evaluator(s) have all of the necessary characteristics, such as knowledge of M&E, knowledge of DDR processes, gender expertise and knowledge of the local context? Do they have or need security clearance? Has there been an assessment of the risks to physical security both for evaluators and the individuals and communities that are contacted? If risks have been identified, is there a strategy for risk management/avoidance? Is the evaluation conflict sensitive, i.e., is there any risk that the evaluation could negatively affect conflict dynamics? Is the evaluation gender sensitive? Have gender experts been consulted? Who should respond to the evaluation findings, and how?", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d0ec47b8-bfcc-4e45-8e14-d0b5c7f29314", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": null, - "Paragraph": "9.1 Steps to consider when drafting terms of reference for evaluation of DDR processes Define the purpose and use of the evaluation. Is the purpose learning or accountability? Will the evaluation be used to decide on future funding? To inform future support? To provide input to new strategy? Describe the evaluation object and scope. What are the specific objectives of the evaluation? To document achievements? To assess some or all of the activity\u2019s objectives? Will the evaluation look at implementation strategies and processes? Will it have a participatory focus? Will it look at the programme\u2019s underlying assumptions and theory of change? Which DAC evaluation criteria will be used (impact, relevance, sustainability, efficiency or effectiveness)? Describe the rationale for the evaluation. Why conduct this evaluation at this point in time? What are the longevity, amount of funding and risks tied to the intervention? Are there any specific events that have triggered the evaluation (change of donors, change in the conflict context, etc.)? Describe the scope, time frame, objectives and nature of the activity to be evaluated. Specify issues to be covered, budget and funds spent, the time period to be evaluated, types of activities, geographical coverage and target groups, as well as other elements of the conflict prevention and peacebuilding intervention addressed, such as contextual issues. Provide directions for the approaches to be used. What method will be used in the evaluation? How should the evaluation be conducted, via what process and steps, etc.? Will there be an inception phase? What will the level of stakeholder involvement in the evaluation process be? Logistical and safety concerns. Address ethical behaviour in conflict environments and provide guidance on safety and logistics. Principles. What standards and principles are to be followed? Refer the team to any relevant policy documents or internal UN agency agreements. Management arrangements, quality control and reporting. Who will be in charge of each task and oversight? To whom will the evaluation team report? Is there a need to establish a steering mechanism for the evaluation? Who will be responsible for ensuring information sharing among team members? Who will be involved in drawing and assessing conclusions? What reports will be generated? Will they be public or confidential? Will they be published or placed on the internet? Will the reports and conclusions be checked? What quality control systems will be used? Team requirements (including team make-up). Who should do the evaluation, and what characteristics do they need to have? What is the desired size and composition of the team? What time commitment is involved in terms of person-hours? What types of individuals are needed for this particular evaluation in this particular context? Budget and schedule. How will the evaluation be funded? Have there been arrangements made for security costs or other additional costs associated with working in a conflict environment? Are funds available for conflict analysis? (Bids may also be accepted and then compared to establish the appropriate funding needed.) When will the evaluation be conducted? What criteria will be applied to reports before funding is disbursed?", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b272143c-2830-4eed-940d-257dd696c3ce", - "Color": "#00A554", - "Level": "3", - "LevelName": "", - "Title": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022", - "PageNum": 23, - "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction DAC\tDevelopmental Assistance Committee M&E\tmonitoring and evaluation SMART\tspecific, measurable, attainable, relevant and time bound WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020.json b/static/data/json/IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020.json deleted file mode 100644 index 5e00632..0000000 --- a/static/data/json/IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020.json +++ /dev/null @@ -1,895 +0,0 @@ -[ - { - "ID": "8e2e6e2c-84e2-4c71-a3c9-490914498db6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Summary Disarmament is the act of reducing or eliminating access to weapons. It is usually regarded as the first step in a DDR programme. This voluntary handover of weapons, ammunition and explosives is a highly symbolic act in sealing the end of armed conflict, and in concluding an individual\u2019s active role as a combatant. Disarmament is also essential to developing and maintaining a secure environment in which demobilization and reintegration can take place and can play an important role in crime prevention. Disarmament operations are increasingly implemented in contexts characterized by acute armed violence, complex and varied armed forces and groups, and the prevalence of a wide range of weaponry and explosives. This module provides the guidance necessary to effectively plan and implement disarmament operations within DDR programmes and to ensure that these operations contribute to the establishment of an environment conducive to inclusive political transition and sustainable peace. The disarmament component of a DDR programme is usually broken down into four main phases: (1) operational planning, (2) weapons collection operations, (3) stockpile management, and (4) disposal of collected materiel. This module provides technical and programmatic guidance for each phase to ensure that activities are evidence-based, coherent, effective, gender-responsive and as safe as possible. The handling of weapons, ammunition and explosives comes with significant risks. Therefore, the guidance provided within this module is based on the Modular Small-Arms Control Implementation Compendium (MOSAIC) and the International Ammunition Technical Guidelines (IATG). Additional documents containing norms, standards and guidelines relevant to this module can be found in Annex B. Disarmament operations must take the regional and sub-regional context into consideration, as well as applicable legal frameworks. All disarmament operations must also be designed and implemented in an inclusive and gender responsive manner. Disarmament carried out within a DDR programme is only one aspect of broader DDR arms control activities and of the national arms control management system (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). DDR programmes should therefore be designed to reinforce security nationwide and be planned in coordination with wider peacebuilding and recovery efforts.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "5c701de3-76ac-4789-8423-fdacef671a2e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "1. Module scope and objectives DDR processes include two main arms control components: (a) disarmament as part of a DDR programme and (b) transitional weapons and ammunition management (WAM). This module provides DDR practitioners with practical standards for the planning and implementation of the disarmament component of a DDR programme in contexts where the preconditions for such programmes are present. These preconditions include a negotiated ceasefire and/or peace agreement, sufficient trust in the peace process, willingness of the parties to the armed conflict to engage in DDR and a minimum guarantee of security (see IDDRS 2.10 on The UN Approach to DDR). Transitional WAM in support of DDR processes is covered in IDDRS 4.11 on Transitional Weapons and Ammunition Management. The linkages between disarmament as part of a DDR programme and Security Sector Reform are covered in IDDRS 6.10 on DDR and Security Sector Reform. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in these standards. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. Definitions of technical terms related to weapons and ammunition are taken from MOSAIC and the IATG. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. In the context of DDR, disarmament refers to the collection, documentation, control and disposal of small arms, ammunition, explosives and light and heavy weapons of combatants and often also of the civilian population. Disarmament also includes the development of responsible arms management programmes. The term \u2018disarmament\u2019 can be sensitive. It can carry connotations of surrender or of having weapons forcibly removed by a more powerful actor. Depending on the contextual realities and sensitivities, as well as the provisions of the peace agreement, alternative terms, such as \u2018laying down arms\u2019 or \u2018putting weapons beyond use\u2019 or \u2018weapons control\u2019, may be employed. Ammunition: A complete device (e.g., missile, shell, mine, demolition store) charged with explosives, propellants, pyrotechnics, initiating composition, or nuclear, biological or chemical material for use in connection with offence or defence, or training, or non-operational purposes, including those parts of weapons systems containing explosives. Deactivated weapon: A weapon that has been rendered incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deactivated by a competent State authority. Note 1: Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable. This includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Demilitarization: The complete range of processes that render weapons, ammunition and explosives unfit for their originally intended purpose. Demilitarization not only involves the final destruction process, but also includes all of the other transport, storage, accounting and pre-processing operations that are equally critical to achieving the final result. Destruction: The rendering as permanently inoperable weapons, their parts, components or ammunition. Disposal: The removal of arms, ammunition and explosives from a stockpile by the utilization of a variety of methods (that may not necessarily involve destruction). Environmental concerns should be considered when selecting which method to use. There are six traditional methods of disposal used by armed forces around the world: (1) sale, (2) gift, (3) use for training, (4) deep sea dumping, (5) land fill, and (6) destruction or demilitarization. Diversion: The movement \u2013 physical, administrative or otherwise \u2013 of a weapon and/or its parts, components or ammunition from the legal to the illicit realm. Explosive: A substance or mixture of substances that, under external influences, is capable of rapidly releasing energy in the form of gases and heat, without undergoing a nuclear chain reaction. Explosive ordnance disposal (EOD): The detection, identification, evaluation, rendering safe, recovery and final disposal of unexploded explosive ordnance. Note 1: It may also include the rendering safe and/or disposal of explosive ordnance that has become hazardous through damage or deterioration, when such tasks are beyond the capabilities of personnel normally assigned responsibility for routine disposal. Note 2: The presence of ammunition and explosives during disarmament operations inevitably requires some degree of EOD response. The level of EOD response will be dictated by the condition of the ammunition or explosives, their level of deterioration and the way in which the local community handles them. Firearms: Any portable barreled weapon that expels, is designed to expel or may be readily converted to expel a shot, bullet or projectile by the action of an explosive, excluding antique firearms of their replicas. Antique firearms and their replicas shall be defined in accordance with domestic law. In no case, however, shall antique firearms include firearms manufactured after 1899. Light weapon: Any man-portable lethal weapon designed for use by two or three persons serving as a crew (although some may be carried and used by a single person) that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, heavy machine guns, hand-held under-barrel and mounted grenade launchers, portable anti-aircraft guns, portable anti-tank guns, recoilless rifles, portable launchers of anti- tank missile and rocket systems, portable launchers of anti-aircraft missile systems, and mortars of a calibre of less than 100 millimetres, as well as their parts, components and ammunition. Note 2: Excludes antique light weapons and their replicas. Marking: The application of permanent inscriptions on weapons, ammunition and ammunition packaging to permit their identification. Render safe procedure (RSP): The application of special explosive ordnance disposal methods and tools to provide for the interruption of functions or separation of essential components to prevent an unacceptable detonation. Safe to move: A technical assessment, by an appropriately qualified technician or technical officer, of the physical condition and stability of ammunition and explosives prior to any proposed move. Should the ammunition and explosives fail a \u2018safe to move\u2019 inspection, they must be destroyed in situ (i.e., at the place where they are found) by a qualified EOD team acting under the advice and control of the qualified technician or technical officer who conducted the initial \u2018safe to move\u2019 inspection. Small arm: Any man-portable lethal weapon designed for individual use that expels or launches, is designed to expel or launch, or may be readily converted to expel or launch a shot, bullet or projectile by the action of an explosive. Note 1: Includes, inter alia, revolvers and self-loading pistols, rifles and carbines, sub-machine guns, assault rifles and light machine guns, as well as their parts, components and ammunition. Note 2 Excludes antique small arms and their replicas. Stockpile: In the context of DDR, the term refers to a large accumulated stock of weapons and explosive ordnance.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ef3354e6-0664-4796-b048-2834556494b6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "3. Introduction Disarmament is generally understood to be the act of reducing or eliminating arms and, as such, is applicable to all weapons systems, ammunition and explosives, including nuclear, chemical, biological, radiological and conventional systems. This module will focus only on conventional weapons systems and ammunition that are typically held by members of armed forces and groups dealt with during DDR programmes. When transitioning out of armed conflict, States may be vulnerable to conflict relapse, particularly if key conflict drivers, including the proliferation of arms and ammunition, remain unaddressed. Inclusive and effective arms control, and disarmament in particular, is critical to prevent and reduce armed conflict and crime and to support recovery and development, as reflected in the 2030 Agenda for Sustainable Development and the Security Council and General Assembly\u2019s 2016 resolutions on sustaining peace. National arms control management systems encompass more than just disarmament. Therefore, disarmament operations should be planned and conducted in coordination with, and in support of, other arms control and reduction measures, including SALW control (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). The disarmament component of any DDR programme should be specifically designed to respond and adapt to the security environment. It should also be planned in coherence with wider peace-making, peacebuilding and recovery efforts. Disarmament plays an essential role in maintaining a secure environment in which demobilization and reintegration can take place as part of a long-term peacebuilding strategy. Depending on the context, DDR phases could be differently sequenced with, for example, demobilization and reintegration paving the way for disarmament. The disarmament component of a DDR programme will usually consist of four main phases: (1) Operational planning; (2) Weapons collection; (3) Stockpile management; (4) Disposal of collected materiel. The cross-cutting activities that should take place throughout these four main phases are data collection, awareness raising, and monitoring and evaluation. Within each phase there are also a number of recommended specific components (see Table 1). TABLE 1: MAIN PHASES OF THE DISARMAMENT COMPONENT OF A DDR PROGRAMME", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "51bf7659-a7aa-41e6-82b6-76c8a0fd8b3e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the disarmament component of DDR programmes.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ff1456d2-bcff-43d8-88ae-0f08572793e1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.1 Voluntary In order to lay the foundation for an effective DDR programme and sustainable peace, disarmament shall be voluntary. Forced disarmament can have a negative impact on contexts in transition, including in terms of restoring trust in authorities and efforts towards national reconciliation. In addition, removing weapons forcibly from combatants or persons associated with armed forces and groups risks creating a security vacuum and an imbalance in military capabilities which may generate increased tensions and lead to a resumption of armed violence. Voluntary disarmament should be facilitated through strong sensitization and communication efforts. It should also be underpinned by firm guarantees of security and immunity from prosecution for the illegal possession of weapon(s) handed in.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "15e0703c-e3a5-4051-96f6-dbb57fb34879", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.2.1 Unconditional release and protection of children Agreeing on child-specific disarmament procedures avoids further possible abuse and exploitation of children, especially for political or tactical gain; and, prepares children for separate and specific child-related demobilization and reintegration processes (see IDDRS 5.20 on Children and DDR). Specific attention should also be given to the disarmament of youth (see IDDRS 5.30 on Youth and DDR).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "43c0bf95-82ff-40ff-ab68-74bf085dac1b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 7, - "Paragraph": "4.3 Gender-responsive and inclusive Disarmament activities must not introduce distinctions based on sex, race, ethnicity, religion or other arbitrary criteria that may create or exacerbate vulnerabilities and power imbalances. All stages of disarmament or other arms control initiatives must integrate gender and age considerations, including the differing impacts and perceptions of such processes on women, men, boys and girls. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women and girls at each stage of the process. A gender-transformative approach actively examines, questions and changes unequal gender norms and imbalances of power. A gender-transformative approach thus helps countries to promote equitable rights and health, and contributes to the prevention of sexual and gender-based violence. A gender-transformative DDR programme should acknowledge, incorporate and address messages on masculinities and violence, including the linkage between masculinities and weapons ownership. Gender-transformative DDR programmes should also ensure that there are both male and female UN military personnel in leadership roles at pick-up points and mobile disarmament sites, and participating in the destruction of weapons. All precautions shall also be taken to avoid reinforcing or generating gender inequalities.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "e070d64a-00ca-4be6-9adc-950ae11e71cc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.4 Conflict sensitive Disarmament operations shall not increase the vulnerability of communities, groups or individuals to internal or external threats. Disarmament strategies should therefore be based on a thorough analysis of the security context, relevant actors and their military capabilities to avoid creating a security imbalance or vacuum, leading to further tensions or jeopardizing the implementation of a peace agreement.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "de8efc5f-9035-4232-87a0-57b724103a7f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.5 Nationally and locally owned National Governments have the right and responsibility to apply their own national standards to all disarmament operations on their territory and shall act in compliance with international arms control instruments and applicable legal frameworks. The primary responsibility for disarmament and weapons collection lies with the Government of the affected State. The support and specialist knowledge of the UN is placed at the disposal of a national Government to ensure that disarmament planning and implementation are conducted in accordance with international arms control instruments, standards and guidance, including those of the IDDRS, the IATG and MOSAIC. Strong national ownership is important, including where the UN is supporting DDR programmes in non-mission settings. Building national and local institutional and technical capacity is essential to the effective, successful, sustainable continuation of disarmament and other arms control efforts.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "ea62ff16-fd8d-4854-9a60-d2f679854fe4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "4.6 Safety and security Handling weapons, ammunition and explosives comes with high levels of risk. The involvement of technically qualified WAM advisers in the planning and implementation of disarmament operations is critical to their safety and success. Technical advisers shall have formal training and operational field experience in ammunition and weapons storage, marking, transportation, deactivation and the destruction of arms, ammunition and explosives, as relevant.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "411f5510-b59a-4390-a05c-f543068d3843", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 8, - "Paragraph": "5. Planning and designing disarmament operations In order to effectively implement the disarmament component of a DDR programme, meticulous planning is required. Planning for disarmament operations includes information collection, a risk and security assessment, identification of eligibility criteria, the development of standard operating procedures (SOPs), the identification of the disarmament team structure, and a clear and realistic timetable for operations. All disarmament operations shall be based on gender responsive analysis. The disarmament component is often the first stage of the entire DDR programme, and operational decisions made at this stage will have an impact on subsequent stages. Disarmament, therefore, cannot be designed in isolation from the rest of the DDR programme, and integrated assessment and DDR planning is key (see IDDRS 3.10 on Integrated DDR Planning: Processes and Structures, and IDDRS 3.11 on Integrated Assessments). It is essential to determine the extent of the capability needed to carry out a disarmament component, and then to compare this with a realistic appraisal of the current capacity available to deliver it. Requests for further assistance from the UN mission military and police components shall be made as early as possible in the planning stage (see IDDRS 4.40 on UN Military Roles and Responsibilities and IDDRS 4.50 on UN Police Roles and Responsibilities). In non-mission settings, requests for capacity development assistance for disarmament operations may be directed to relevant UN agency(ies). Key terms and conditions for disarmament should be discussed during the peace negotiations and included in the agreement (see IDDRS 2.20 on The Politics of DDR). This requires that parties and mediators have an in-depth understanding of disarmament and arms control, or access to expertise to guide them and provide a common understanding of the different options available. In some contexts, the handover of weapons from one party to another (for example, from armed groups to State institutions) may be inappropriate, resulting in the need for the involvement of a neutral third party.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b0a89c9f-8a2c-49ee-8762-015349bdc4ba", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 9, - "Paragraph": "5.1 Information collection Initial planning should be based on a careful data collection and analysis on the armed forces and groups to be disarmed, disaggregated by sex and age, as well as an analysis of the dynamics of armed violence and illicitly held weapons and ammunition. DDR programmes are increasingly implemented in environments with a myriad of armed forces and groups whose alliances are fluid or unclear, often within a context of weak State institutions and fragile or absent rule of law. Solid analysis informed by continuous data gathering and assessment is essential in order to navigate these challenging, rapidly changing environments.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "183a6b5d-e187-4bb3-9d5f-7ad54e578378", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.1.1 Integrated assessment A DDR integrated assessment should start as early as possible in the peace negotiation process and the pre-planning phase (see IDDRS 3.11 on Integrated Assessments). This assessment should contribute to determining whether disarmament or any transitional arms control initiatives are desirable or feasible in the current context, and the potential positive and negative impacts of any such activities. The collection of information is an ongoing process that requires sufficient resources to ensure that assessments are updated throughout the lifecycle of a DDR programme. Information management systems and data protection measures should be employed from the start by DDR practitioners with support from the UN mission or lead UN agency(ies) Information Technology (IT) unit. The collection of data relating to weapons and those who carry them is a sensitive undertaking and can present significant risks to DDR practitioners and their sources. United Nations security guidelines should be followed at all times, particularly with regards to protecting sources by maintaining their anonymity. Integrated assessments should include information related to the political and security context and the main drivers of armed conflict. In addition, in order to design evidence-based, age-specific and gender-sensitive disarmament operations, the integrated assessment should include: An analysis of the memberships of armed forces and groups (number, origin, age, sex, etc.) and their arsenals (estimates of the number and the type of weapons, ammunition and explosives); An analysis of the patterns of weapons possession among men, women, girls, boys, and youth; A mapping of the locations and access routes to materiel and potential caches (to the extent possible); An understanding of the power imbalances and disparities in weapons possession between communities; An analysis of the use of weapons in the commission of serious human rights violations or abuses and grave breaches of international humanitarian law, as well as crime, including organized crime; An understanding of cultural and gendered attitudes towards weapons and the value of arms and ammunition locally; The identification of sources of illicit weapons and ammunition and possible trafficking routes; Lessons learnt from any past disarmament or weapons collections initiatives; An understanding of the willingness of and incentives for armed forces and groups to participate in DDR. An assessment of the presence of armed groups not involved in DDR and the possible impact these groups can have on the DDR process. Methods to gather data, including desk research, telephone interviews and face-to-face meetings, should be adapted to the resources available, as well as to the security and political context. Information should be centralized and managed by a dedicated focal point. Once sufficient, reliable information has been gathered, collaborative plans can be drawn up by the National DDR Commission and the UN DDR component in mission settings or the National DDR Commission and lead UN agency(ies) in non-mission settings outlining the intended locations and site requirements for disarmament operations, the logistics and staffing required to carry out disarmament, and a timetable for operations.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "91f991aa-9248-4967-ba26-31796aed4b9f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.1.2 Weapons survey An accurate and detailed weapons survey is essential to draw up effective and safe plans for the disarmament component of a DDR programme. Weapons surveys are also important for transitional weapons and ammunition management activities (IDDRS 4.11 on Transitional Weapons and Ammunition Management). Sufficient data on the number and type of weapons, ammunition and explosives that can be expected to be recovered are crucial. A weapons survey enables the accurate definition of the extent of the disarmament task, allowing for planning of the collection and future storage and destruction requirements. The more accurate and verifiable the initial data regarding the specifically identified armed forces and groups participating in the conflict, the better the capacity of the UN to make appropriate plans or provide national authorities with relevant advice to achieve the aims of the disarmament component. Data disaggregated by sex and age is a prerequisite for understanding the age- and gender-specific impacts of arms misuse and for designing evidence-based, gender-responsive disarmament operations to address them. It is important to take into consideration the fact that, while women may be active members of armed groups, they may not actually hold weapons. Evidence has shown that female combatants have been left out of DDR processes as a result of this on multiple occasions in the past. A gender-responsive mapping of armed forces and groups is therefore critical to identify patterns of gender-differentiated roles within armed forces and groups, and to ensure that the design of any approach is appropriately targeted. A weapons survey should be implemented as early as possible in the planning of a DDR programme; however, it requires significant resources, access to sensitive and often unstable parts of the country, buy-in from local authorities and ownership by national authorities, all of which can take considerable time to pull together and secure. A survey should draw on a range of research methods and sources in order to collate, compare and confirm information (see Annex C on the methodology of weapons surveys).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3fea8b14-6969-4bf9-b4e6-9d15ec31df2c", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.2 Objectives of disarmament The overarching aim of the disarmament component of a DDR programme is to control and reduce arms, ammunition and explosives held by combatants before demobilization in order to build confidence in the peace process, increase security and prevent a return to conflict. Clear operational objectives should also be developed and agreed. These may include: A reduction in the number of weapons, ammunition and explosives possessed by, or available to, armed forces and groups; A reduction in actual armed violence or the threat of it; Optimally zero, or at the most minimal, casualties during the disarmament component; An improvement in the perception of human security by men, women, boys, girls and youth within communities; A public connection between the availability of weapons and armed violence in society; The development of community awareness of the problem and hence community solidarity; The reduction and disruption of the illicit trade of weapons within the DDR area of operations; A reduction in the open visibility of weapons in the community; A reduction in crimes committed with weapons, such as conflict-related sexual violence; The development of norms against the illegal use of weapons.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b8ebe262-7e2e-4c28-8702-bf421d584cd4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 12, - "Paragraph": "5.3 Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of disarmament operations and identify threats to the DDR programme and its personnel, as well as to participants and beneficiaries. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken). Risks related to women, youth, children and other specific-needs groups should also be considered. Operational and technical risks to be assessed when considering which approach to take might relate to the combatants themselves, as well as to the types of weapons, ammunition and explosives being collected, and to external threats. In developing this \u2018safe\u2019 working environment, it must be acknowledged that there can be no absolute safety, and that many of the activities carried out during weapons collection operations have a high risk associated with them. However, national authorities, international organizations and non-governmental organizations (NGOs) must try to achieve the highest possible levels of safety.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "599c0b32-3db5-48e3-a1f1-32c025cd3616", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 13, - "Paragraph": "5.3.1 Operational risks There are likely to be several operational risks, depending on the context, including the following: Threats to the safety and security of DDR programme personnel (both UN and non-UN): During the disarmament phase of the DDR programme, staff are likely to be in direct contact with armed individuals, including members of both armed forces and groups. Staff should be conscious not only of the risks associated with handling weapons, ammunition and explosives, but also of the risks of unpredictable behaviour as a result of the significant levels of stress that disarmament activities can generate among combatants and other stakeholders. Avoid supporting weapons buy-back: UN supported DDR programmes shall avoid attaching monetary value to weapons as a means of encouraging their surrender by members of armed forces and groups. Weapons buy-back programmes within and outside DDR have proven to be inefficient and even counter-productive as they tend to fuel national and regional arms flows, which in the end can jeopardize the achievement of disarmament objectives in a DDR programme. Buy-back programmes can also have unintended societal consequences such as economically rewarding combatants and exacerbating existing gender inequalities Disarmament of foreign combatants: Disarmament operations may also need to consider armed foreign combatants. Foreign combatants may be disarmed in the host country or at the border of the country of origin to which they will be returning. DDR programmes should plan for disarmament of foreign combatants within or outside repatriation agreements between the country of origin and the host country (see IDDRS 5.40 on Cross-Border Population Movements). Terrorism and violent extremism threats: DDR programmes are increasingly being conducted in contexts affected by terrorism. Disarmament operations in these contexts require the highest security safeguards and robust on-site WAM expertise to maximize the safety of all involved. DDR practitioners should be aware of the requirements imposed on States by UN Security Council resolutions 2370 (2017) and 2482 (2019) and Council\u2019s 2015 Madrid Guiding Principles and its 2018 Addendum, in terms of, inter alia, ensuring that appropriate legal actions are taken against those who knowingly engage in providing terrorists with weapons. Lack of sustainability: Disarmament operations shall not start unless the sustainability of funding and resources is guaranteed. Previous attempts to carry out disarmament operations with insufficient assets and funds have resulted in unconstructive, partial disarmament, a return to armed conflict, and the failure of the entire DDR process. The reconfiguring and closing of UN missions is another crucial moment that should be planned in advance. Such transitions often require handing over responsibility to national authorities or to the United Nations Country Team (UNCT). It is important to ensure these entities have the mandate and capacity to complete the DDR programme even after the withdrawal of UN mission resources. 5.3.2 Technical risks and hazards In order to deal with potential technical threats during the disarmament component of DDR programmes, and to implement an appropriate response to such threats, it is necessary to distinguish between risks and hazards. Commonly, a hazard is defined as \u201ca potential source of physical injury or damage to the health of people, or damage to property or the environment,\u201d while a risk can be defined as \u201cthe combination of the probability of occurrence of a hazard and the severity of that hazard\u201d (see ISO/IEC Guide 51: 2014 [E)). In terms of disarmament operations, many hazards are created by the presence of weapons, ammunition and explosives. The level of risk is mostly dependent on the knowledge and training of the disarmament teams (see section 5.7). The physical condition of the weapons, ammunition and explosives and the environment in which they are handed over or stored have a major effect on that risk. A range of techniques for estimating risk are contained in IATG 2.10 on Introduction to Risk Management Principles and Processes. All relevant guidelines contained in the IATG should be strictly adhered to in order to ensure the safety of all persons and assets when handling conventional ammunition. Adequate expertise is critical. Unqualified personnel should never handle ammunition or any type of explosive material.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "38cc6918-b9c3-433a-8a27-9c07e02deac4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 14, - "Paragraph": "5.4 Gender-sensitive disarmament operations If women are not adequately integrated into DDR programmes, and disarmament operations in particular, gender stereotypes of masculinity associated with violence, and femininity dissociated from power and decision-making, may be reinforced. If implemented in a gender-sensitive manner, a DDR programme can actually highlight the constructive roles of women in the transition from conflict to sustainable peace. Disarmament can increase a combatant\u2019s feeling of vulnerability. In addition to providing physical protection, weapons are often seen as important symbols of power and status. Men may experience disarmament as a symbolic loss of manhood and status. Undermined masculinities at all ages can lead to profound feelings of frustration and disempowerment. For women, disarmament can threaten the gender equality and respect that may have been gained through the possession of a weapon while in an armed force or group. DDR programmes should explore ways to promote alternative symbols of power that are relevant to particular cultural contexts and that foster peace dividends. This can be done by removing the gun as a symbol of power, addressing key concerns over safety and protection, and developing strategic engagement with women (particularly female dependants) in disarmament operations. Female combatants and women and girls associated with armed forces and groups are common in armed conflicts across the world. To ensure that men and women have equal rights to participate in the design and implementation of disarmament operations, a gender-inclusive and -responsive approach should be applied at every stage of assessment, planning, implementation, and monitoring and evaluation. Such an approach requires gender expertise, gender analysis, the collection of sex- and age-disaggregated data, and the meaningful participation of women at each stage of the DDR process. Gender-sensitive disarmament operations are proven to be more effective in addressing the impact of the illicit circulation and misuse of weapons than those that do not incorporate a gender perspective (MOSAIC 6.10 on Women, Men and the Gendered Nature of Small Arms and Light Weapons). Therefore, ensuring that gender is adequately integrated into all stages of disarmament and other DDR-related arms control initiatives is essential to the overall success of DDR processes.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e4ce10c3-b764-4303-b2b6-1660057610dc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 15, - "Paragraph": "5.5 Eligibility criteria for access to DDR programmes Establishing rigorous, unambiguous and transparent criteria that allow people to participate in DDR programmes is vital to achieving the objectives of DDR. Eligibility criteria must be carefully designed and agreed to by all parties, and screening processes must be in place in the disarmament stage. Eligibility for a DDR programme may or may not require the physical possession of a weapon and/or ammunition, depending on the context. The determination of eligibility criteria shall be based on the content of the peace agreement or ceasefire, if these documents include relevant provisions, as well as the results of the aforementioned integrated assessment. In either case, eligibility for a DDR programme must be gender inclusive and shall not discriminate on the basis of age or gender. Participants in DDR programmes may include individuals in support and non-combatant roles or those associated with armed forces and groups, including children. As these individuals are typically unarmed, they may not be eligible for disarmament, but will be eligible for demobilization and reintegration (see IDDRS 3.21 on Participants, Beneficiaries and Partners). Historically, women who are eligible to participate in DDR programmes may not be aware of their eligibility, may be deliberately excluded by commanders or may be deprived of their weapons to the benefit of men seeking to enter the DDR programme. For these reasons, DDR practitioners shall be aware of different categories of eligibility and should ensure that proper public information and sensitization with commanders and potential DDR participants and beneficiaries is completed (on female participants and beneficiaries, see Figure 1 and Box 3). FIGURE 1: FEMALE ELIGIBILITY CRITERIA Eligibility criteria must be designed to prevent individuals who are not members of armed forces and groups from gaining access to DDR programmes. The prospect of a DDR programme and the associated benefits can present an enticement to many individuals. Furthermore, armed groups that inflate their membership numbers to increase their political weight could try to rapidly recruit civilians to meet the shortfall. The screening process is used to confirm whether individuals meet the eligibility criteria for entering the DDR programme (see IDDRS 4.20 on Demobilization). Close cooperation with the leadership of armed forces and groups, civil society (including women\u2019s groups), local police and national DDR-related bodies, and a well-conducted public information and sensitization campaign are essential tools to ensure that only those who are eligible participate in a DDR programme (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "60947fdc-01ef-408a-a5f1-3c06f4e413f7", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.5.1 Weapons-related eligibility criteria Depending on the context and the content of the ceasefire and/or peace agreement, eligibility for a DDR programme can include specific weapons/ammunition-related criteria. These criteria should be based on a thorough understanding of the context if effective disarmament is to be achieved. The arsenals of armed forces and groups vary in size, quality and types of weapons. For instance, in conflicts where foreign States actively support armed groups, these groups\u2019 arsenals are often quite large and varied, including not only serviceable SALW but also heavy-weapons systems. Past experience shows that the eligibility criteria related to weapons and ammunition are often not consistent or stringent enough. This can lead to the inclusion of individuals who are not members of armed forces and groups and the collection of poor-quality materiel while illicit serviceable materiel remains in circulation. Accurate information regarding armed forces and groups\u2019 arsenals (see section 5.1) is key in determining relevant and effective weapons-related criteria. These include the type and status (serviceable versus non-serviceable) of weapons or the quantity of ammunition that a combatant should bring along in order to be enrolled in the programme. According to the context, the ratio of arms and ammunition to individual combatants can vary and may include SALW as well as heavy weapons and ammunition. In order to ascertain their eligibility, combatants may also need to take a weapons procedures test, which will identify their familiarity with and ability to handle weapons. Although members of armed groups may not have received formal training to military standards, they should be able to demonstrate an understanding of how to use a weapon. This test should be balanced against other ways to identify combatant status (see IDDRS 4.20 on Demobilization). Children with weapons should be disarmed but should not be required to demonstrate their capacity to use a weapon or prove familiarity with weaponry to be admitted to the DDR programme (see IDDRS 5.20 on Children and DDR). All weapons brought by ineligible individuals as part of a disarmament operation shall be collected even if these individuals will not be eligible to enter the DDR programme. To avoid confusion and frustration, it is key that eligibility criteria are communicated clearly and unambiguously to members of armed groups and the wider population (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Legal implications should also be clearly explained \u2014 for example, that the voluntary\u00a0submission of weapons during the disarmament phase by eligible and ineligible individuals will not result in prosecution for illegal possession.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "401f0afe-5bc8-42ea-a594-275a4b640aef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.6 Standard operating procedures Standard operating procedures (SOPs) are a set of mandatory step-by-step instructions designed to guide practitioners within a particular DDR programme in the conduct of disarmament operations and subsequent WAM activities. The development of disarmament SOPs has become common practice across DDR programmes, as it allows for coherence in the delivery of activities, ensuring greater safety and security through adherence to standardized regulations. In mission contexts, SOPs should identify the precise responsibilities of the various UN components involved in disarmament. All stakeholders should agree on the content of the SOP(s), and the document(s) should be reviewed by the UN\u2019s legal office at Headquarters. The development of SOPs is led by the DDR component, with the support of WAM advisers, and signed off by the head of the UN mission. All staff from the DDR component as well as UN military component members and any other partners supporting disarmament activities shall be familiar with the relevant SOPs. The content of SOPs shall be kept up to date. In non-mission contexts, the national authority should also be advised by the lead UN agency(ies) on the development of national SOPs for the safe, effective and efficient conduct of the disarmament component of the DDR programme. All those engaged in supporting disarmament operations shall also be familiar with the relevant SOPs. A single disarmament SOP, or a set of SOPs each covering specific procedures related to disarmament activities, should be informed by the integrated assessment and the national DDR policy document, and comply with international guidelines and standards (IATG and MOSAIC), as well as with national laws and international obligations of the country where the programme is being implemented (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). SOPs should cover all disarmament-related activities and include two lines of management procedures: one for ammunition and explosives, and one for weapons systems. The SOP(s) should refer to and be consistent with any other WAM SOPs adopted by the mission and/or national authorities. While some missions and/or national authorities have developed a single disarmament SOP, others have preferred a set of SOPs. Regardless, SOPs should cover the following procedures: Reception of arms and/or ammunition and explosives in static or mobile disarmament; Compliance with weapons- and ammunition-related eligibility criteria (e.g., what is considered a serviceable weapon?); Weapons storage management; Ammunition and explosives storage management; Accounting for weapons and ammunition; Transportation of weapons; Transportation of ammunition; Storage checks; Reporting and investigating loss or theft; Destruction of weapons (or other appropriate methods of disposal and potential marking); Destruction of ammunition (or other appropriate methods of disposal). Managing spontaneous disarmament, including in advance of a formal DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "cebb7051-8d64-4ab6-aff0-7acfad05964d", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.7 Disarmament team structure The disarmament team is responsible for implementing all operational procedures for disarmament: physical verification of arms and ammunition, recording of materiel, issuance of disarmament receipts/certificates, storage of materiel, and the destruction of unsafe ammunition and explosives. WAM advisers (see Box 5) should be duly incorporated from the planning stage throughout the implementation of the disarmament phase. As per the IATG, force commanders (military component) should designate a force explosives safety officer responsible for advising on all arms, ammunition and explosives safety matters, including with regards to DDR activities (see Annex L of IATG 01.90). A disarmament team should include a gender-balanced composition of: DDR practitioners; A representative of the national DDR commission (and potentially other national institutions); An adequately sized technical support team from a specialized UN agency or NGO, including a team leader/WAM adviser (IMAS EOD level 3), two weapons inspectors to identify weapons and assess safety of items, registration officers, storemen/women and a medic; Military observers (MILOBs) and representatives from the protection force; National security forces armament specialists (police, army and/or gendarmerie); A representative from the mission\u2019s department for child protection; A national gender specialist. A national youth specialist. Depending on the provisions of the ceasefire and/or peace agreement and the national DDR policy document, commanders of armed groups may also be part of the disarmament team. Disarmament teams should receive training on the disarmament SOPs (see section 5.6), the chain of procedures involved in conducting disarmament operations, entering data into the registration database, and the types of arms and ammunition they are likely to deal with and their safe handling. Training should be designed by the DDR component with the support of WAM/EOD-qualified force representatives or a specialized UN agency or NGO. DDR practitioners and other personnel who are not arms and ammunition specialists should also attend the training to ensure that they fully understand the chain of operations and security procedures involved; however, unless qualified to do so, staff shall not handle weapons or ammunition at any stage. Before the launch of operations, a simulation exercise should be organized to test the planning phase, and to support each stakeholder in understanding his or her role and responsibilities. The mission DDR component, specialized UN agencies, and the military component should identify liaison officers to facilitate the implementation of disarmament operations In non-mission settings, the conduct and security of disarmament operations may rely on national security forces, joint commissions or teams and on national specialists with technical support from relevant UN agency (ies), multilateral and bilateral partners. The UN and partners should support the organization of training for national disarmament teams to develop capacity.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8cb6f11e-effa-4056-adc1-f11010f1e7a5", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "5.8 Timelines for disarmament Timelines for the implementation of the disarmament component of a DDR programme should be developed by taking the following factors into account: The provisions of the peace agreement or the ceasefire agreement; The availability of accurate information about demographics, including sex and age, as well as the size of the armed forces and groups to be disarmed; The location of the armed forces\u2019 and groups\u2019 units and the number, type and location of their weapons; The nature, processing capacity and location of mobile and static disarmament sites; The time it takes to process each ex-combatant or person formerly associated with an armed force or group (this could be anywhere from 15 to 20 minutes per person). The simulation exercise will help to determine how long individual weapons collection and accounting will take. Depending on the nature of the conflict and other political and social conditions, a well-planned and well-implemented disarmament component may see large numbers of combatants and persons associated with armed forces and groups arriving for disarmament during the early stages of the DDR programme. The number of individuals reporting for disarmament may drop in the middle of the process, but it is prudent to plan for a rush towards the end. Late arrivals may report for disarmament because of improved confidence in the peace process or because some combatants and weapons have been held back until the final stages of disarmament as a self-protection measure. The minimum possible time should be taken to safely process combatants and persons associated with armed forces and groups through the disarmament and demobilization phases, and then back into the community. This swiftness is necessary to avoid a loss of momentum and to prevent former combatants and persons formerly associated with armed forces and groups from settling in temporary camps away from their communities. Depending on the context, individuals may leave armed groups and engage in spontaneous disarmament outside of official DDR programme and disarmament operations (see section 6.3). In such situations, DDR practitioners should ensure adherence to this disarmament standard as much as possible. To facilitate this spontaneous disarmament process, procedures and timelines should be clearly communicated to authorities, members of armed groups and the wider community.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "56e78eeb-39ee-48d6-a8a2-fc41f32c7550", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.1 Disarmament locations The planning of disarmament operations should be initiated at the peace negotiations stage when the appropriate modus operandi for disarming combatants and persons associated with armed forces and groups will be set out. The UN should support the national authorities in identifying the best disarmament approach. Mobile and static approaches have been developed to fit different contexts and constraints, and can be combined to form a multi-strand approach. Depending on the national strategy and the sequencing of DDR phases, the disarmament component may be intrinsically linked to demobilization, and sites for both activities could be combined (see IDDRS 4.20 on Demobilization). The selection of the approach, or combination of approaches, to take should be based on the following: Findings from the integrated assessment and weapons survey, including a review of previous approaches to disarmament (see section 5.1); Discussions and strategic planning by the national authorities; Exchanges with leaders of armed forces and groups; The security and risk assessment; Gender analysis; Financial resources. TABLE 2: ADVANTAGES AND DISADVANTAGES OF MOBILE AND STATIC DISARMAMENT Notwithstanding the selection of the specific disarmament approach, all combatants and persons associated with armed forces and groups should be informed of: The time and date to report, and the location to which to report; Appropriate weapons and ammunition safety measures; The activities involved and steps they will be asked to follow; The level of UN or military security to expect on arrival.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3a12366d-9f75-430c-8ced-010f348b7ad6", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.1.1 Static disarmament Static or site-based (cantonment) disarmament uses specifically designed disarmament sites to carry out the disarmament operation. These require detailed planning and considerable organization and rely on the coordination of a range of implementing partners. The establishment and management of disarmament sites should be specifically included in the peace agreement to ensure that former warring factions agree and are aware that they have a responsibility under the peace agreement to proceed to such sites. Depending on the disarmament plan, geographic and security constraints, combatants and persons associated with armed forces and groups can move directly to disarmament sites, or their transportation can be organized through pick-up points.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c8971dc8-2cbe-4f8d-9df6-163cbff77b5f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Pick-up points The role of pick-up points (PUPs) is to concentrate combatants and persons associated with armed forces and groups in a safe location, prior to a controlled and supervised move to designated disarmament sites. Administrative and safety processes begin at the PUP. There are similarities between procedures at the PUP and those carried out during mobile disarmament operations, but the two processes are different and should not be confused. Members of armed forces and groups that report to a PUP will then be moved to a disarmament site, while those who enter through the mobile disarmament route will be directed to make their way to demobilization. PUPs are locations agreed to in advance by the leaders of armed forces and groups and the UN mission military component. They are selected because of their convenience, security and accessibility for all parties. The time, date, place and conditions for entering the disarmament process should be negotiated by commanders, the National DDR Commission and the DDR component in mission settings and the UN lead agency(ies) in non-mission settings. Combatants often need to be moved from rural locations, and since many armed forces and groups will not have adequate transport, PUPs should be situated close to their positions. PUPs shall not be located in or near civilian areas such as villages, towns or cities. Special measures should be considered for children associated with armed forces and groups arriving at PUPs (see IDDRS 5.20 on Children and DDR). Gender-responsive provisions shall also be planned to provide guidance on how to process female combatants and WAAFG, including DDR/UN military staff composed of a mix of genders, separation of men and women during screening and clothing/baggage searches at PUPs, and adequate medical support particularly in the case of pregnant and lactating women (see IDDRS 5.10 on Women, Gender and DDR). Disarmament operations should also include combatants and persons associated with armed forces and groups with disabilities and/or chronically ill and/or wounded who may not be able to access the PUPs. These persons may also qualify for disarmament, while requiring special transportation and assistance by specialists, such as medical staff and psychologists (see IDDRS 5.70 on Health and DDR and IDDRS 5.80 on Disabilities and DDR). Once combatants and persons associated with armed forces and groups have arrived at the designated PUP, they will be met by male and female UN representatives, including military and child protection staff, who shall arrange their transportation to the disarmament site. This first meeting between armed individuals and UN staff shall be considered a high-risk situation, and all members of armed forces and groups shall be considered potentially dangerous until disarmed. At the PUP, combatants and persons associated with armed forces and groups may either be completely disarmed or may keep their weapons during movement to the disarmament site. In the latter case, they should surrender their ammunition. The issue of weapons surrender at the PUP will either be a requirement of the peace agreement, or, more usually, a matter of negotiation between the leadership of armed forces and groups, the national authorities and the UN. The following activities should occur at the PUP: Members of the disarmament team meet combatants and persons associated with armed forces and groups outside the PUP at clearly marked waiting areas; personnel deliver a PUP briefing, explaining what will happen at the sites. Qualified personnel check that weapons are clear of ammunition and made safe, ensuring that magazines are removed; combatants and persons associated with armed forces and groups are screened to identify those carrying ammunition and explosives. These individuals should be immediately moved to the ammunition area in the disarmament site. Qualified personnel conduct a clothing and baggage search of all combatants and persons associated with armed forces and groups; men and women should be searched separately by those of the same sex. Combatants and persons associated with armed forces and groups with eligible weapons and safe ammunition pass through the screening area to the transport area, before moving to the disarmament site. The UN shall be responsible for ensuring the protection and physical security of combatants and persons associated with armed forces and groups during their movement from the PUP. In non-mission settings, the national security forces, joint commissions or teams would be responsible for the above-mentioned tasks with technical support from relevant UN agency(ies), multilateral and bilateral partners. Those individuals who do not meet the eligibility criteria for entry into the DDR programme should leave the PUP after being disarmed and, where needed, transported away from the PUP. Individuals with defective weapons should hand these over, but, depending on the eligibility criteria, may not be allowed to enter the DDR programme. These individuals should be given a receipt that shows full details of the ineligible weapon handed over. This receipt may be used if there is an appeal process at a later date. People who do not meet the eligibility criteria for the DDR programme should be told why and orientated towards different programmes, if available, including CVR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "308bf403-7958-4192-972d-bb33748765b4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 25, - "Paragraph": "6.1.2 Mobile disarmament In certain circumstances, the establishment of a fixed disarmament site may be inappropriate. In such cases, one option is the use of mobile disarmament, which usually consists of a group of modified road vehicles and has the advantage of decreased logistical outlay, increased flexibility, reduced cost, and rapid deployment and assembly. A mobile approach permits a more rapid response than site-based disarmament and can be used when weapons are concentrated in a specific geographical area, when moving collected arms, or when assembling scattered members of armed forces and groups would be difficult or trigger insecurity. This approach allows for more flexibility and for the limited movement of armed combatants and persons associated with armed forces and groups who remain in their communities. Mobile disarmament may also be more accessible to women, children, disabled and other specific-needs groups. While mobile disarmament ensures the limited movement of unsafe ammunition, a sound mobile WAM and EOD capacity is required to collect and destroy items on site and to transport arms and ammunition to storage facilities.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "af0e226c-bff4-470d-9820-939773e8ce42", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 25, - "Paragraph": "6.2 Procedures for disarmament A disarmament SOP should state the step-by-step procedures for receiving weapons and ammunition, including identifying who has responsibility for each step and the gender-responsive provisions required. The SOP should also include a diagram of the disarmament site(s) (either mobile or static). Combatants and persons associated with armed forces and groups are processed one by one. Procedures, to be adapted to the context, are generally as follows. Before entering the disarmament site perimeter: The individual is identified by his/her commander and physically checked by the designated security officials. Special measures will be required for children (see IDDRS 5.20 on Children and DDR). Men and women will be checked by those of the same sex, which requires having both male and female officers among UN military/DDR staff in mission settings and national security/DDR staff in non-mission settings. If the individual is carrying ammunition or explosives that might present a threat, she/he will be asked to leave it outside the handover area, in a location identified by a WAM/EOD specialist, to be handled separately. The individual is asked to move with the weapon pointing towards the ground, the catch in safety position (if relevant) and her/his finger off the trigger. After entering the perimeter: The individual is directed to the unloading bay, where she/he will proceed with the clearing of his/her weapon under the instruction and supervision of a MILOB or representative of the UN military component in mission settings or designated security official in a non-mission setting. If the individual is under 18 years old, child protection staff shall be present throughout the process. Once the weapon has been cleared, it is handed over to a MILOB or representative of the military component in a mission setting or designated security official in a non-mission setting who will proceed with verification. If the individual is also in possession of ammunition for small arms or machine guns, she/he will be asked to place it in a separate pre-identified location, away from the weapons. The materiel handed in is recorded by a DDR practitioner with guidance on weapons and ammunition identification from specialist UN agency personnel or other arms specialists along with information on the individual concerned. The individual is provided with a receipt that proves she/he has handed in a weapon and/or ammunition. The receipt indicates the name of the individual, the date and location, the type, the status (serviceable or not) and the serial number of the weapon. Weapons are tagged with a code to facilitate storage, management and recordkeeping throughout the disarmament process until disposal (see section 7.1). Weapons and ammunition are stored separately or organized for transportation under the instructions and guidance of a WAM adviser (see section 7.2 and DDR WAM Handbook Unit 11). Ammunition presenting an immediate risk, or deemed unfit for transport, should be destroyed in situ by qualified EOD specialists.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "78d3590f-1d8a-415c-b201-d0873e490952", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "6.3 Spontaneous disarmament outside of official disarmament operations In some contexts, in order to encourage individuals to leave armed groups when there is no DDR programme, a modus operandi for receiving combatants and persons associated with armed groups may be established. This may include the identification of a network of reception points, such as\u00a0DDR offices or peacekeeping camps, or the deployment of mobile disarmament units. Procedures should be communicated to authorities, members of armed groups and the wider community on a regular basis to ensure all are informed and sensitized (see Box 4 and IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). In the case peacekeeping camps are designated as reception points, the DDR component \u2013\u00a0in\u00a0coordination with the military component and the battalion commander \u2013 should identify specific focal points within the camp to deal with combatants and persons associated with armed groups. These focal points should be trained in how to handle and disarm new arrivals, including taking gender-sensitive approaches with women and age-sensitive approaches with children, and in how to register and store materiel until DDR practitioners take over. Unsafe items should be stored in a pre-identified or purpose-built area as advised by DDR WAM advisers until specialized UN agency personnel or force EOD specialists can assess the safety of the items and recommend appropriate action.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "c69578db-66c7-4040-966b-8eecbcc3b396", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 27, - "Paragraph": "7. Stockpile management phase The term \u2018stockpile management\u2019 can be defined as procedures and activities designed to ensure the safe and secure accounting, storage, transportation and handling of arms, ammunition and explosives. The IATG and MOSAIC shall guide the design and implementation of this phase, and qualified WAM advisers should develop relevant SOP(s) (see section 5.6). The stockpile management and destruction of ammunition and explosives require a much more detailed technical response, as the risks and hazards are greater than for weapons, and stockpiles present a larger logistical challenge. Ammunition and explosives shall be handled only by those with the necessary technical competencies.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "20018301-b227-458d-8184-514b2a5b26f4", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.1 Accounting for weapons and ammunition The recordkeeping of weapons, ammunition and explosives during the disarmament phase of a DDR programme is critical to the effective management of materiel, to ensure the transparency of the DDR programme, and to monitor activities and prevent diversion. Information management systems (IMS) used by DDR components and lead UN agency(ies) supporting national authorities for registering combatants and accounting for weapons should provide sufficient recorded information to allow for precise identification and tracking of the movement of materiel from the point of collection to the point of disposal (see IDDRS 4.20 on Demobilization). In order to support effective recording, close-up and full-frame photographs should be taken of each piece of materiel wherever possible. TABLE 3: RECORDING SALW, AMMUNITION AND EXPLOSIVES In smaller disarmament operations or when IMS has not yet been set for the capture of the above information, a separate simple database should be developed to manage weapons, ammunition and explosives collected. For example, the use of a standardized Excel spreadsheet template which would allow for the effective centralization of data. DDR components and UN lead agency(ies) should dedicate appropriate resources to the development and ongoing maintenance of this database and consider the establishment of a more comprehensive and permanent IMS where disarmament operations will clearly involve the collection of thousands of weapons and ammunition. Ownership of data by the UN, the national authorities or both should be decided ahead of the launch of the DDR programme. Data should be protected in order to ensure the security of DDR participants and stockpiles but could be shared with relevant UN entities for analysis and tracing purposes, as appropriate. In instances where the peace agreement does not prevent the formal tracing or investigation of the weapons and ammunition collected, specialized UN entities including Panels of Experts or a Joint Mission Analysis Centre may analyse information and send tracing requests to national authorities, manufacturing countries or other former custodians of weapons regarding the origins of the materiel. These entities should be given access to weapons, ammunition and explosives collected and also check firearms against INTERPOL\u2019s Illicit Arms Records and tracing Management System (iARMS) database. Doing this would shed light on points of diversion, supply chains, and trafficking routes, inter alia, which may contribute to efforts to counter proliferation and illicit trafficking and support the overall objectives of DDR. Forensic analysis may also lead to investigations regarding the licit or illicit origin of the collected weapons and possible linkages to terrorist organizations, in line with UN Security Council resolutions 2370 (2017) and 2482 (2019). In a number of DDR settings, ammunition is generally handed in without its original packaging and will be loose packed and consist of a range of different calibres. Ammunition should be segregated into separate calibres and then accounted for in accordance with IATG 03.10 on Inventory Management.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "52183809-d118-4b0e-9173-895db619dfa8", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.2 Transportation of weapons and ammunition The transportation of dangerous goods from disarmament sites to storage areas should be planned in order to mitigate the risk of explosions and diversions. A WAM adviser should supervise the organization of materiel: arms and ammunition should be transported separately and moved in different shipments. Similarly, whenever advisable for security reasons and practicable in terms of time and capacity, the weapons to be transported should be made temporarily inactive by removing a principal functional part (e.g., bolt, cylinder, slide) and providing for separate transportation of ammunition, ultimately in a different shipment or convoy. All boxes and crates containing weapons or ammunition should be secured and sealed prior to loading onto transport vehicles. As most DDR materiel is transported by road, security of transportation should be ensured by the UN military component in mission settings or by national security forces or by designated security officials in non-mission settings. In the absence of qualified personnel, all ammunition and explosives other than small arms and machine gun ammunition should not be transported. In such cases, SOPs should provide directions and WAM advisers should be contacted to confirm instructions on how and where the remaining ammunition should be stored until relevant personnel are able to come and transport it or destroy it in situ. Upon receipt, the shipment should be checked against the DDR weapons and ammunition database, which should be updated accordingly, and a handover declaration should be signed.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "efe7b762-3036-43bd-a4e9-2ae2f0471d30", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "7.3 Storage The safety and security of collected weapons, ammunition and explosives shall be a primary concern. This is because the diversion of materiel or an unplanned storage explosion would have an immediate negative impact on the credibility and the objectives of the whole DDR programme, while also posing a serious safety and security risk. DDR programmes very rarely have appropriate storage infrastructure at their disposal, and most are therefore required to build their own temporary structures, for example, using shipping containers. Conventional arms and ammunition can be stored effectively and safely in these temporary facilities if they comply with international guidelines including IATG 04.10 on Field Storage, IATG 04.20 on Temporary Storage and MOSAIC 5.20 on Stockpile Management. The stockpile management phase shall be as short as possible. The sooner that collected weapons and ammunition are disposed of (see section 8), the better in terms of (1) security and safety risks; (2) improved confidence and trust; and (3) a lower requirement for personnel and funding. Post-collection storage shall be planned before the start of the collection phase with the support of a qualified DDR WAM adviser who will determine the size, location, staff and equipment required based on the findings of the integrated assessment (see section 5.1). The SOP should identify the actors responsible for securing storage sites, and a risk assessment shall be conducted by a WAM adviser in order to determine the optimal locations for storage facilities, including appropriate safety distances. The assessment shall also help identify priorities in terms of security measures to be adopted with regard to physical protection (see DDR WAM Handbook Unit 16). The content of DDR storage sites shall be checked and verified on a regular basis against the DDR weapons and ammunition database (see section 7.3.1). Any suspected loss or theft shall be reported immediately and investigated according to the SOP (see MOSAIC 5.20 for an investigative report template as well as UN SOP Ref.2017.22 on Loss of Weapons and Ammunition in Peace Operations). Weapons and ammunition must be taken from a store only by personnel who are authorized to do so. These personnel and their affiliation should be identified and authenticated before removing the materiel. The details of personnel removing and returning materiel should be recorded in a log, identifying their name, affiliation and signature, dates and times, weapons/ammunition details and the purpose of removal.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "38937412-b43a-406f-9706-eb027d1f12bc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 29, - "Paragraph": "7.3.1 Storing weapons The storage of weapons is less technical than that of ammunition and explosives, with the primary risks being loss and theft due to poor management. Although options for security measures are often quite limited in the field, in order to prevent or delay theft, containers should be equipped with fixed racks on which weapons can be secured with chains or steel cables affixed with padlocks. Some light weapons that contain explosive components, such as man-portable air-defence systems, will present explosive hazards and should be stored with other explosive materiel, in line with guidance on Compatibility Groups as defined by IATG 01.50 on UN Explosive Hazard Classification Systems and Codes. To allow for effective management and stocktaking, weapons that have been collected should be tagged. Most DDR programmes use handwritten tags, including the serial number and a tag number, which are registered in the DDR database. However, this method is not effective in the long term and, more recently, DDR components have been using purpose-made bar code tags, allowing for electronic reading, including with a smartphone. A physical stock check by number and type of arms should be conducted on a weekly basis in each storage facility, and the serial numbers of no less than 10 per cent of arms should be checked against the DDR weapons and ammunition database. Every six months, a 100 per cent physical stock check by quantity, type and serial number should be conducted, and records of storage checks should be kept for review and audit processes.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "79a4860b-85ac-46f0-84f8-bf64e6c8f64f", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 30, - "Paragraph": "7.3.2 Storing ammunition and explosives The storage of ammunition and explosives, other than for small arms and machine guns (1.4 UN Hazard Division), requires highly qualified personnel, as the risks related to this materiel are substantial. Technical guidance to minimize the risk of accidents and their effects is very specific with regard to storing ammunition and explosives in line with Compatibility Groups (see IATG 01.50) and distances (see IATG 2.20). Ammunition collected during the disarmament phase of a DDR programme is often of unknown status and may have been stored in non-optimal environmental conditions (e.g., high temperature/high humidity) that render ammunition unsafe. A thorough risk assessment of ammunition storage facilities shall be carried out by the WAM adviser. A range of quantitative and qualitative methods for this assessment are available in IATG 2.10. In accordance with the IATG, all ammunition storage facilities should be at a minimum of Risk-Reduction Process Level 1 compliance (see IATG 12.20) in order to mitigate the risk of explosions and diversion. A physical stock check by quantity and type of ammunition should be conducted on a weekly basis. An accessible demolition area that can be used for the destruction of ammunition deemed unsafe and at risk of detonation or deflagration should be identified.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2656a2a2-191d-4ffc-97ec-64f6f22295ef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8. Disposal phase Destruction shall be the preferred method of disposal of materiel collected through DDR. However, other options may be possible, including the transfer of materiel to national stockpiles and the deactivation of weapons. Operations should be safe, cost-effective and environmentally benign.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "295abe59-21a7-4d4c-be29-649f4b848886", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1 Destruction of materiel Destruction reduces the flow of illicit arms and ammunition in circulation and removes the risk of materiel being diverted (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Arms and ammunition that are surrendered during disarmament operations are in an unknown state and likely hazardous, and their markings may have been altered or removed. The destruction of arms and ammunition during a DDR programme is a highly symbolic gesture and serves as a strong confidence-building measure if performed and verified transparently. Furthermore, destruction is usually less financially burdensome than storing and guarding arms and ammunition in accordance with global guidelines. Obtaining agreement from the appropriate authorities to proceed usually takes time, resulting in delays and related risks of diversion or unplanned explosions. Disposal methods should therefore be decided upon with the national authorities at an early stage and clearly stated in the national DDR programme. Transparency in the disposal of weapons and ammunition collected from former warring parties is key to building trust in DDR and the entire peace process. A clear plan for destruction should be established by the DDR component or the lead UN agency(ies) with the support of WAM advisers, including the most suitable method for destruction (see Annex E), the development of an SOP, the location, as well as options for the processing and monitoring of scrap metal recycling, if relevant, and the associated costs of the destruction process. The plan shall also provide for the monitoring of the destruction by a third party to ensure that the process was efficient and that all materiel is accounted for to avoid diversion. The physical destruction of weapons is much simpler and safer than the physical destruction of ammunition, which requires highly qualified personnel and a thorough risk assessment.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "034e4ff0-af92-493e-82d0-c22d0f2a2a2e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1.1 Destruction of weapons In most existing DDR programmes, due to the absence of an industrial steel smelting facility to melt down small arms, cutting is the preferred method of destruction, particularly where quantities of weapons are limited and where it is logistically easier and safer to take the cutting tool to the weapons rather than vice versa. If not done correctly, cutting carries the risk that the parts may be re-used to produce new weapons. Cutting is also labour intensive and produces significant quantities of scrap metal. (See Annex E to select the most suitable method of destruction.) With regard to heavy weapons, demilitarization by dismantling and recycling should be the preferred disposal option for the majority of these systems. The market for conversion to civilian use is very limited. This is because sale is also a proliferation risk and reputable end users are rare. The demilitarization by dismantling and recycling technique involves the cleaning and dismantling/cutting of the vehicle but results in significant quantities of scrap. If a large quantity of heavy weapons is to be destroyed, financial planning could include the value of the scrap recovered. It is also important to maintain strict control over weapons designated for destruction to prevent the risk of their entry into the illicit market before the destruction takes place.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "125cdc05-51d5-4727-872a-8d4f5f95f545", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.1.2 Destruction of ammunition The safe destruction of recovered ammunition and explosives presents a variety of technical challenges, and the demolition of a large number of explosive items requires a significant degree of training. Risks inherent in destruction are significant if the procedure does not comply with strict technical guidelines (see IATG 10.10), including casualties and contamination. During the disarmament phase of a DDR programme, ammunition may need to be destroyed either at the collection point (PUP, disarmament site) because it is unsafe, or after being transferred to a secure DDR storage facility. Ammunition destruction requires a strict planning phase by WAM/EOD advisers or engineers who should identify priorities, obtain authorization from the national authorities, select the most appropriate method (see Annex E) and location for destruction, and develop a risk assessment and security plan for the operation. The following types of ammunition should be destroyed as a priority: (a) ammunition that poses the greatest risk in terms of explosive safety, (b) ammunition that is attractive to criminals or armed groups, (c) ammunition that must be destroyed in order to comply with international obligations (for instance, anti-personnel mines for States that are party to the Mine Ban Treaty) and (d) small arms and machine gun ammunition less than 20 mm. After destruction, decontamination operations at demolition sites and demilitarization facilities should be undertaken to ensure that all recovered materials and other generated residues, including unexploded items, are appropriately treated, and that scrap and empty packaging are free from explosives.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "3f33c063-1967-45b5-9e7b-f2d221287740", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "8.2 Transfers to national authorities National authorities may insist that serviceable materiel collected during disarmament should be incorporated into national stockpiles. Reasons for this may be linked to a lack of resources to acquire new materiel, the desire to regain control over materiel previously looted from national stockpiles or the existence of an arms embargo making procurement difficult. Before transferring arms or ammunition to the national authorities, the DDR component or lead UN agency(ies) shall take account of all obligations under relevant regional and international instruments as well as potential UN arms embargos and should seek the advice of the mission\u2019s or lead UN agency(ies) legal adviser (see IDDRS 2.11 on The Legal Framework for UN DDR). If the host State is prohibited from using or possessing certain weapons or ammunition (e.g., mines or cluster munitions), such materiel shall be destroyed. Furthermore, in line with the UN human rights due diligence policy, materiel shall not be transferred where there are substantial indications that the consignee is committing grave violations of international humanitarian, human rights or refugee law. WAM advisers should explain to the national authorities the potential negative consequences of incorporating DDR weapons and ammunition into their stockpiles. These consequences not only include the symbolic connotations of using conflict weapons, but also the costs and operational challenges that come from the management of materiel that differs from standard equipment. The integration of ammunition into national stockpiles should be discouraged, as ammunition of unknown origin can be extremely hazardous. A technical inspection of weapons and ammunition should be jointly carried out by both UN and national experts before handover to the national authorities. Finally, weapons handed over to national authorities should bear markings made at the time of manufacture, and best practice recommends the destruction or remarking of weapons whose original markings have been altered or erased. Weapons should be registered by the national authorities in line with international standards.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "50751a60-9736-4356-a73e-5d8c2d6d7d5a", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 32, - "Paragraph": "8.3 Deactivation of weapons The deactivation of arms involves rendering the weapon incapable of expelling or launching a shot, bullet, missile or other projectile by the action of an explosive, that cannot be readily restored to do so, and that has been certified and marked as deactivated in compliance with international guidelines by a competent State authority. Deactivation requires that all pressure-bearing components of a weapon be permanently altered in such a way so as to render the weapon unusable; this includes modifications to the barrel, bolt, cylinder, slide, firing pin and/or receiver/frame. Weapons that have not been properly deactivated represent a significant threat, as they may be reactivated and used by criminals and terrorists. While destruction of weapons should be the preferred method of disposal, deactivation could be stipulated as part of a peace agreement where some of the collected weapons would be used in museum settings, or to create \u2018peace art\u2019 or monuments, to symbolically reflect the end of armed conflict. The process of deactivation should occur rapidly after a peace agreement so that weapons do not remain indefinitely in stores incurring unnecessary costs and raising the risk of diversion.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e6f23b9e-6d7c-49ef-b649-4d342cfe1d3c", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 33, - "Paragraph": "Annex A: Abbreviations CVR\tcommunity violence reduction EOD\texplosive ordnance disposal IATG\tInternational Ammunition Technical Guidelines IMAS\tinternational mine action standard/standards IMS\tinformation management systems MILOB\tmilitary observer MOSAIC\tModular Small-Arms Control Implementation Compendium NGO\tnon-governmental organization PUP\tpick-up point RSP\trender safe procedure SALW\tsmall arms and light weapons SOP\tstandard operating procedure WAAFG\twomen associated with armed forces and groups WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "709f49e7-4788-4126-b817-0ac81e21b86b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 33, - "Paragraph": "Annex B: Normative documents The following normative documents (i.e., documents containing applicable norms, standards and guidelines) contain provisions that apply to the processes dealt with in this module. International Ammunition Technical Guidelines, https://www.un.org/disarmament/un-saferguard/guide-lines. International Standards Organization, ISO Guide 51: \u2018Safety Aspects: Guidelines for Their Inclusion in Standards\u2019. Modular Small-arms-control Implementation Compendium, https://www.un.org/disarmament/convarms/mosaic. Organization for Security and Cooperation in Europe, Best Practice Guide: Minimum Standards for National Procedures for the Deactivation of SALW (Vienna, 2018). Small Arms Survey and South Eastern and Eastern Europe Clearinghouse for the Control of Small Arms (SEESAC), SALW Survey Protocols, http://www.seesac.org/Survey-Protocols. SEESAC, Defence Conversion \u2013 The Disposal and Demilitarization of Heavy Weapons Systems, 2006. UNDPA/PMD and UNDPKO/DPET, Aide Memoire: Engaging with Non-State Armed Groups (NSAGs) for Political Purposes: Considerations for UN Mediators and Missions, 2017. UNDOS and UNDPO, UN Manual on Ammunition Management, 2019. UNDOS, UNDPO, UNDPPA, UNDSS, Policy: Weapons and Ammunition Management, Ref PK/G/2019.3, http://dag.un.org/handle/11176/400906. UNDOS, UNDPO, UNDPPA, UNDSS, SOP: Loss of Weapons and Ammunition in Peace Operations. Ref.2017.22. UN Department of Peacekeeping Operations and UN Office for Disarmament Affairs. Effective Weapons and Ammunition Management in a Changing Disarmament, Demobilization and Reintegration Context. Handbook for United Nations DDR practitioners. 2018. Referred as \u2018DDR WAM Handbook\u2019 in this standard. UN Mine Action Service, IMAS 11.10\u201311.30: \u2018Stockpile Destruction\u2019, http://www.mine actionstandards.org.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "50e27784-3833-4f75-afb7-c5111c00125b", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": null, - "Paragraph": "Annex C: Weapons survey Source: DDR WAM Handbook, Unit 13 A weapons survey can take more than a year from the time resources are allocated and mobilized to completion and the publication of results and recommendations. The survey must be designed, implemented and the results applied in a gender responsive manner. Who should implement the weapons survey? While the DDR component and specialized UN agencies can secure funding and coordinate the process, it is critical to ensure that ownership of the project sits at the national level due to the sensitivities involved, and so that the results have greater legitimacy in informing any future national policymaking on the subject. This could be through the National Coordinating Mechanism on SALW, for example, or the National DDR Commission. Buy-in must also be secured from local authorities on the ground where research is to be conducted. Such authorities must also be kept informed of developments for political and security reasons. Weapons surveys are often sub-contracted out by UN agencies and national authorities to independent and impartial research organizations and/or an expert consultant to design and coordinate the survey components. The survey team should include independent experts and surveyors who are nationals of the country in which the DDR component or the UN lead agency(ies) is operating and who speak the local language(s). The implementation of weapons surveys should always serve as an opportunity to develop national research capacity. What information should be gathered during a weapons survey? Weapons surveys can support the design of multiple types of activities related to SALW control in various contexts, including those related to DDR. The information collected during this process can inform a wide range of initiatives, and it is therefore important to identify other UN stakeholders with whom to engage when designing the survey to avoid duplication of effort. Components Contextual analysis: conflict analysis; mapping of armed actors; political, economic, social, environmental, cultural factors. Weapons distribution assessment: types; quantities; possession by men, women and children; movements of SALW; illicit sources of weapons and ammunition; potential locations of materiel and caches. Impact survey: impact of weapons on children, women, men, vulnerable groups, DDR beneficiaries etc.; social and economic developments; number of acts of armed violence and victims. Perception survey: attitudes of various groups towards weapons; reasons for armed groups holding weapons; alternatives to weapons possession, etc. Capacity assessment: community, local, national coping mechanism; legal tools; security and non-security responses.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b555dd71-ccd3-411f-be11-36dee14fdfe2", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 35, - "Paragraph": "Methodology The survey should draw on a variety of research methods and sources in order to collate, compare and confirm information \u2014 e.g., desk research, collection of official quantitative data (including crime and health data related to firearms), and interviews with key informants such as national security and defence forces, community leaders, representatives of civilian groups (including women, youth and professionals) affected by armed violence, armed groups, foreign analysts and diplomats. The main component of the survey should be the perception survey (see above) \u2014 i.e., the administration of a questionnaire. A representative sample is to be determined by an expert according to the target population. The questionnaire should be developed and administered by a research team including male and female nationals, ensuring respect for ethical considerations and gender and cultural sensitivities. The questionnaire should not take more than 30 minutes to administer, and careful thought should be given as to how to frame the questions to ensure maximum impact (see Annex C of MOSAIC 5.10 for a list of sample questions). A survey can help the DDR component to identify interventions related to disarmament of combatants or ex-combatants, but also to CVR and other transitional programming. Among others, the weapons survey will help identify the following: Communities particularly affected by weapons availability and armed violence. Communities particularly affected by violence related to ex-combatants. Communities ready to participate in CVR and the types of programming they would like to see developed. Types of weapons and ammunition in circulation and in demand. Trafficking routes and modus operandi of weapons trafficking. Groups holding weapons and the profiles of combatants. Cultural and monetary values of weapons. Security concerns and other negative impacts linked to potential interventions.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6ea990f5-220d-43aa-ac44-01621fbd2192", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 37, - "Paragraph": "Destruction of SALW There are many different techniques for destroying SALW that vary in complexity, cost and results. The DDR component in mission settings and the UN lead agency(ies) in non-mission settings will be responsible for identifying the most suitable method with the support of a technical adviser or specialized UN agency. Selection criteria include: Type of weapons; Quantity of weapons; Availability of funds (for equipment, training and staff); Available level of WAM expertise; Availability of local resources and technology; Available infrastructure; Security constraints; Local customs and references. In most existing DDR programmes, weapons cutting is the preferred though not necessarily the most efficient method of destruction. The advantages and disadvantages of this method and others are outlined below. Other methods of weapons destruction, including burning (with kerosene) and crushing (with tracked vehicles), are sometimes used for their highly visible and symbolic impact. Although simple and relatively low cost, these methods are not effective, as weapons and component parts may still be serviceable and must therefore undergo a further process to ensure destruction.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "da0839e5-497d-42c7-898c-2ab1932a3854", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020", - "PageNum": 38, - "Paragraph": "Destruction of ammunition and explosives IATG 10.10 shall serve as the basis for all destruction of ammunition and explosives activities. The following IMAS also cover the stockpile destruction of ammunition and explosives: IMAS 11.10: \u2018Stockpile Destruction\u2019; IMAS 11.20: \u2018Open Burning and Open Detonation (OBOD) Operations\u2019; IMAS 11.30: \u2018National Planning Guidelines\u2019. The EOD expert will select the method according to: Type and quantity of ammunition to be destroyed; Availability of qualified human resources; Location and type of destruction sites available; Distance from storage and destruction sites and accessibility; Financial resources available; Requisite equipment and materials available; Environmental impact. The most commonly used methods in DDR settings are open burning and open detonation. These are regarded as the easiest ways to destroy ammunition and often present the most cost-effective solution; they are also highly symbolic and can serve as effective mechanisms for building confidence in the DDR programme. Open burning is generally used for the destruction of propellants and pyrotechnic compositions and has the potential to cause significant environmental harm. Open detonation uses serviceable explosives as charges to destroy ammunition and requires a large cordon to ensure protection from the blast. This method is labour intensive and may not destroy all ammunition, requiring post-blast EOD clearance. The industrial-level destruction of ammunition and explosives combines the skills of production, mechanical, chemical and explosive engineering. It is a highly specialist occupation, and appropriate independent technical advice shall be taken during the planning phase if stockpile levels suggest that industrial destruction may be the safest, most environmentally friendly or most cost-effective option.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022.json b/static/data/json/IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022.json deleted file mode 100644 index 030b285..0000000 --- a/static/data/json/IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022.json +++ /dev/null @@ -1,21 +0,0 @@ -[ - { - "ID": "9e5211c6-ecee-470e-bb09-cae26df1d8f8", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022", - "PageNum": null, - "Paragraph": "4.30 Reintegration Contents Summary 1. Module scope and objectives 2. Terms, definitions and abbreviations 3. Introduction 4. Guiding principles 4.1 Voluntary 4.2 People-centred 4.3 Gender responsive and inclusive 4.4 Conflict sensitive 4.5 Flexible, accountable and transparent 4.6 Nationally and locally owned 4.7 Regionally supported 4.8 Integrated 4.9 Well planned 5. Transitioning from reinsertion to reintegration 6. Approaches to supporting reintegration 6.1 Targeted individual reintegration support 6.2 Community-based reintegration support 6.3 Combined approaches 6.4 Information, counselling and referral system 7. Analysis and assessments for reintegration programming 7.1 Mainstreaming gender into analysis and assessments 7.2 Conflict and security analysis 7.3 Recovery and peacebuilding assessments 7.4 Reintegration assessments focused on members of armed forces and groups 7.5 Political assessments 7.6 Managing data collected in assessments 8. Planning and design 8.1 Participatory, inclusive and transparent planning 8.2 Planning for urban versus rural reintegration support 8.3 Linkages with planning for wider stabilization, recovery and peacebuilding 8.4 Design of reintegration programmes 9. Reintegration components 9.1 Economic reintegration 9.2 Social and psychosocial reintegration 9.3 Political reintegration Annex 1 Conflict and security analysis \u2013 possible questions Endnotes 4.30 Reintegration Summary The reintegration of ex-combatants and persons associated with armed forces and groups is a long-term process that takes place at the individual, family and community levels and has social, psychosocial, economic, political and security dimensions. In settings where DDR takes place, economies have often been affected by conflict, posing significant challenges to creating sustainable livelihoods for former combatants and other conflict-affected groups. Social and psychological issues linked to identity, trust, social networks, trauma, community acceptance, and reconciliation must be addressed to ensure violence prevention and lasting peace. In addition, empowering ex-combatants to take part in the political life and governance of their communities and state can bring forth a range of benefits, such as providing civilians with a voice to address any former or residual grievances in a socially constructive, non-violent manner. Without sustainable and comprehensive reintegration, former combatants may become further marginalized and vulnerable to re-recruitment into armed groups or engagement in criminal or gang activities. Reintegration support addresses these socio-economic challenges and builds resilience to re-recruitment and a return to violence, necessary to enhance security and to achieve lasting peace. As an important part of sustaining peace, reintegration support is provided as part of a DDR programme, or in the absence of such programmes, complementing DDR-related tools (such as community violence reduction) or following security sector reform in mission and non-mission settings. When reintegration support is preceded by the disarmament and demobilization phases of a DDR programme, efforts should be made to ensure a smooth transition between reinsertion and reintegration. When supported during ongoing conflict before peace agreements are negotiated and signed, the aim is to facilitate the sustainable reintegration of those leaving armed forces and groups whether designated as terrorist organizations by the UN Security Council, or not, and/or to contribute to dynamics that prevent further recruitment and sustain peace. Community-based reintegration plays an important role in these contexts, supporting communities of return, restoring social relations and preventing and/or mitigating perceptions of inequitable access to resources. In any case, reintegration support is provided through time-bound programmes that cannot match the breadth, depth or duration of the reintegration process, which is part of local, national and regional recovery and development. Therefore, careful analysis is required to design and implement the most strategic and pragmatic programme weighing the benefits and challenges of the different reintegration approaches (individually targeted or community assistance or their combination) and components (economic, social, psychosocial, political) with adequate sequencing and timing. Best practice demonstrates that reintegration support should consider both individual targeted support as well as community-based support. How much of each type of support depends on the context. A strong monitoring system is needed to continuously track if the approach or mix of approaches taken, and the components and intensity selected are yielding the desired effect. In cases where the latter is not evidenced, adaptive management tools must be implemented to redirect course towards expected results in a timely manner. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors, who will be supporting the reintegration process for much longer than the externally supported programme is crucial from the beginning. Planning for reintegration support should be based on a broad range of conflict- and gender- and age-sensitive assessments conducted with sufficient time to allow for careful programme design. One of the most important aspects in designing reintegration support programmes is to address the needs of ex-combatants and persons associated with armed forces and groups without turning them into a real or perceived privileged group within the community. The reintegration support should therefore be planned in such a manner as to avoid creating resentment and bitterness within wider communities or societies or putting a strain on a community\u2019s limited resources. While best practice has shown that every programme should include both individual and community components, the balance of these will depend on the context. Approaching reintegration support from a community-based perspective to more effectively implement programmes and prevent tensions from forming between ex-combatants and communities is key. To factor such complex interplay, comprehensively planning for reintegration support should be participatory, transparent and inclusive; taking account of the gender dimensions, differences between rural and urban settings; the rights of victims of crimes, and be linked to wider stabilization, recovery and peacebuilding. Reintegration programmes using individual approaches shall have eligibility criteria that are transparent, easily understood, unambiguous and verifiable. A long-term public information and strategic communications strategy to keep communities and former members of armed forces and groups appraised of the programme shall also be implemented before reintegration support begins and throughout the reintegration programme. Programmes should not only focus on economic support but also address social, psychosocial and political aspects of reintegration that strengthen individual and community resilience. At an individual level resilience refers to the ability to adapt, rebound and strengthen oneself in the face of adversity and risk. For DDR participants, and often for conflict-affected communities, it is the ability to overcome traumatic experiences, establish social networks, and avoid negative coping mechanisms (such as substance abuse), to regulate their nervous system, to adopt non-violent approaches to conflict resolution, and to resist re-recruitment or recruitment in criminal groups or gangs. At a community level, resilience can affect, and be affected by, economic, social, psychosocial, and political factors. Economically, DDR practitioners should recognize that providing vocational training alone will not help former members of armed forces and groups to gain employment unless these training programmes are linked to broader employment creation and/or support to entrepreneurship initiatives based on economic opportunity mapping, and complemented by social and psychosocial support. Socially, DDR practitioners should be aware that former members of armed forces and groups may experience stigmatization, psychosocial and physical health issues that may affect their ability to successfully reintegrate and thrive in their community. To address these issues, reconciliation initiatives, psychosocial support, and the strengthening of social support networks should be considered. Politically, reintegration support may be used to encourage the involvement and participation of former members of armed forces and groups in decision and policy-making processes. While aiding former armed groups to transform into political parties is beyond the scope of a reintegration programme, DDR practitioners may provide individuals and communities with civic and voter education, and information on civil and political rights. 1. Module scope and objectives The objective of this module is to provide DDR practitioners with guidance on reintegration support either as a component of a DDR programme or as part of a broader DDR process. The guidance on reintegration support is also applicable to ex-combatants and persons formerly associated with armed forces and groups during ongoing conflict, when downsizing of security forces occurs, and when appropriate, for persons formerly associated with armed groups designated as terrorist organizations by the United Nations Security Council, a regional body or a Member State (host State or donor) (see IDDRS 2.11 on The Legal Framework for UN DDR). The module provides specific programmatic guidance that complements IDDRS 2.40 on Reintegration as Part of Sustaining Peace. IDDRS 2.40 provides the overarching strategic guidance on reintegration as part of the UN Approach to DDR whereas IDDRS 4.30 provides programmatic guidance on reintegration as a component of a DDR programme or not. The guidance in this module is applicable to both mission and non-mission settings. Given the complexity of reintegration processes and the need for context-specific programmes, the guidance offered in this module is less prescriptive than in other IDDRS modules. The module provides guidance on reintegration approaches: targeted individual reintegration support, community-based reintegration support, and combined approaches. Guidance for each of these approaches is explored in detail in this module. Following discussion of the approaches to reintegration support and guidance on programme planning and design, the possible components of a reintegration programme are outlined, from economic, social/psychosocial, and political. The module also identifies linkages between reintegration support and wider stabilization, recovery and peacebuilding frameworks, and the women, peace and security (WPS) agenda. Reintegration support is at the center of the humanitarian-development-peace nexus and should be designed as a contribution to achieving the Sustainable Development Goals, in particular SDG 8 Promote sustained, inclusive and sustainable economic growth, full and productive employment and decent work for all, in reintegration settings, SDG 16 on Peace, Justice and Strong Institutions and SDG 16.1 Significantly reduce all forms of violence and related death rates everywhere. Reintegration support also has the potential to contribute to achieving other SDG targets including: 4.1 and 4.7 on education and promoting cultures of peace; 5.2 and 5.5 on preventing violence against women and girls and promoting women\u00b4s leadership and participation; 8.7 and 8.8 related to children associated with armed forces and groups and improving work place safety; SDG 10.2 on political, social and economic inclusion; and, finally, SDG 11.1, 11.2 and 11.7 on housing, transport and safe public spaces. 2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should,\u2019 \u2018may,\u2019 \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard. b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications. c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Reintegration is the process through which ex-combatants and persons formerly associated with armed forces and groups transition sustainably to live as civilian members of society in communities of their choice. Reintegration takes place at the individual, family and community levels and has social, psychosocial, economic, political, and security dimensions. Reintegration processes are part of local, national and regional recovery and development, with the international community playing a supporting role if requested. Where appropriate, dependants and host-community members may be provided with reintegration support. Reintegration support is made up by time-bound actions undertaken by all those actors assisting ex-combatants and persons formerly associated with armed forces and groups in their reintegration process. Reintegration support may encompass the creation of sustainable livelihoods for former combatants and conflict-affected groups, social and psychosocial services to increase acceptance, trust and reconciliation and empowering ex-combatants to take part in political life of their communities and country. Reintegration support may be provided as part of a reintegration programme when the pre-conditions for a DDR programme are in place or when these pre-conditions are not in place as part of a DDR process for members of armed groups who are not signatories of a Comprehensive Peace Agreement (CPA). Reintegration support is often provided through programmes funded by national budgets and/or voluntary contributions for a minimum of three years. In some settings, depending on the UN configuration and funding modalities, reintegration support and reinsertion assistance may not necessarily be distinguished and, according to local contexts, can be combined into a broader reintegration programme. A reintegration programme is designed to facilitate the ex-combatants and persons formerly associated with armed forces and groups\u2019 transition to live sustainably as civilian members of society in communities of their choice. However, because programmes are time bound and funding is limited, a reintegration programme cannot match the breadth, depth or duration of the reintegration process, nor the long-term recovery and development process. Therefore, careful analysis is required in order to design and implement a strategic and pragmatic reintegration programme that coherently links with broader stabilization and peacebuilding, paving the way for recovery and development. Developing such linkages, approaches and components with adequate and careful consideration for sequencing and timing is key. A strong monitoring system is needed to continuously track if the approach or mix of approaches taken and components selected and their intensity are yielding the desired effect. In cases where the latter is not evidenced, adaptive management tools must be implemented to redirect course towards expected results in a timely manner. A well-planned exit strategy, with an emphasis on capacity building and ownership by national and local actors who will be supporting the reintegration process for much longer than the externally assisted reintegration programme is therefore crucial from the beginning 3. Introduction Reintegration support can play an important role in sustaining peace (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). Reintegration support as part of a DDR programme is often provided to large numbers of DDR participants and beneficiaries as part of the implementation of a CPA. However, even when no peace agreement has been negotiated or signed, reintegration support may still be provided as part of an integrated DDR process to those individuals who decide to leave armed forces and groups. Reintegration support may also complement broader security sector reform or DDR-related tools, such as community violence reduction (see IDDRS 2.30 on Community Violence Reduction and IDDRS 6.10 on DDR and Security Sector Reform). The reintegration of ex-combatants and persons formerly associated with armed forces and groups, whether male, female or with other gender identities, is often regarded as the most complicated component of DDR. Time-bound reintegration programmes cannot match the breadth, depth or duration of the reintegration process nor the longer-term local, national, and regional recovery and development process. However, they can play an important role in sustaining peace and in mitigating potential security challenges in fragile contexts. Careful assessment of conflict and security challenges, including the drivers of conflict and resolution (or lack thereof), combined with a robust understanding of the specific needs, concerns and capacities of male, female and non-binary ex-combatants and associated groups is essential to prevent further marginalization of DDR participants, to prevent and mitigate their re-recruitment into armed groups or engagement in gang or criminal activities. Former members of armed forces and groups may experience economic, social, psychosocial, and political challenges when returning to civilian life. Economic challenges are usually considerable, since economies may have collapsed after periods of violence and insecurity, posing significant challenges to the livelihoods of former members of armed forces and groups and other conflict-affected groups. Social and psychological issues of identity, trust, trauma, reconciliation and acceptance have been shown to be crucial for reintegration processes, especially when the use of violence has become normalized. In addition, the participation of ex-combatants and persons formerly associated with armed forces and groups in the political life of their communities and countries can be challenging for some, but can also produce a range of benefits, such as providing civilians with a voice to address any former or residual conflict-related grievances in a socially constructive, non-violent manner. Reintegration support addresses these socio-economic challenges and builds resilience to re-recruitment and a return to violence, necessary to enhance security and to achieve lasting peace. When tailored to address the particular needs of individuals, reintegration support can help former members of armed forces and groups to overcome these challenges and reduce the likelihood that they will return to their former group, join a new one, or enter a criminal organization. When reintegration support is expanded to whole communities and integrated into local and national development efforts, it can also help address the root causes of armed conflict and reduce the likelihood of first-time recruitment among civilian community members. Strengthening resilience is one of the most important aspects of supporting reintegration in both ongoing and post-conflict contexts. Resilience refers to the ability to adapt, rebound and strengthen functioning in the face of violence, extreme adversity and risk. For ex-combatants and persons formerly associated with armed forces and groups, it is related to the ability to withstand, resist and overcome the violence and potentially traumatic events experienced during armed conflict. Resilience also refers to the capacity to withstand the pressure to return to an armed life. The provision of reintegration support \u2013 such as psychological support and life skills, formal education and vocational training \u2013 can contribute to individual resilience. Community resilience can also be enhanced by reintegration support, such as when this support enhances the capacity of communities to absorb former members of armed forces and groups. This module recognizes the unique complexities of each reintegration programme context, and therefore, rather than offer prescriptive guidance, it provides a framework of approaches, which can be used according to the context. These include: targeted individual reintegration support, community-based reintegration support, and combined approaches. Guidance for each of these approaches is explored in detail in this module. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to reintegration. 4.1 Voluntary Participation in a reintegration programme as part of a DDR process shall be voluntary (See IDDRS 2.10 UN Approach to DDR). 4.2 People-centred 4.2.1 Unconditional release and protection of children Children who were recruited by armed groups may have experienced significant harm and have specific needs. Furthermore, children who joined or supported armed forces or groups may have done so under duress, coercion or manipulation. Children shall be considered primarily as victims, regardless of the nature of the armed groups. In the case of children who have been associated with armed forces or groups, the focus should be on creating an enabling environment for their reintegration and on ensuring their meaningful participation throughout the reintegration programme, addressing the trauma they have endured, highlighting their self-worth and ability to contribute to society and peace, and countering the drivers that resulted in their association with armed groups in the first place. In order to not create tensions or stigma, opportunities for reintegration support shall also be provided to other children in the area (i.e., those who did not join armed forces and groups). The following principles regarding reintegration support to children apply: Children shall be treated as children and, if they have been associated with armed forces or groups, as survivors of violations of their rights. They shall always be referred to as children. In any decision that affects children, the best interests of the child shall be a primary consideration. International legal standards pertaining to children shall be applied. States shall engage children\u2019s families to support rehabilitation and reintegration. See IDDRS 5.30 on Children and DDR for additional information and definitions. 4.2.2 In accordance with standards and principles of humanitarian assistance Reintegration support shall be planned, designed and implemented in close collaboration and complementarity with related humanitarian and developmental programmes. Effort shall also be made to ensure that serious violations of international law, including international human rights and humanitarian law, by ex-combatants and persons formerly associated with armed forces and groups are dealt with through appropriate national and international justice and accountability processes, as required (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Mechanisms shall be designed to ensure that if, during a reintegration programme, evidence emerges that a participant has committed serious violations of international law this shall be referred to the relevant authorities for further investigation to ensure full accountability. In addition, where relevant, community-based reintegration programmes shall explore opportunities to contribute to broader transitional justice and reconciliation processes and mechanisms, including by contributing to the recognition of the rights of victims, for example with respect to reparation. 4.3 Gender-responsive and inclusive Non-discrimination and fair and equitable treatment of participants and beneficiaries are core principles of the UN\u2019s involvement in reintegration support. Differences exist among the people who benefit from reintegration support \u2013 which include, but are not limited to, sex, age, class, religion, gender identity, and physical, intellectual, psychosocial and social capacities \u2013 all of which require specific responses. Reintegration programmes shall be planned, designed and implemented in a gender-sensitive manner, ensuring the meaningful participation of diverse population groups throughout the programme cycle. Gender-sensitive reintegration support includes planning based upon sex-disaggregated data so that programmes can identify the specific circumstances and motivations to join armed groups, as well as the needs, ambitions and potentials of women, men, boys, girls, and individuals with other gender identities. In cases where women have self-demobilized or been excluded from DDR programmes by commanders, efforts should be made to integrate them into the DDR process and provide them with access to reintegration support, if they so choose. Female-specific reintegration support may also be tailored to assist those women who may fear being identified as former members of an armed force or group due to the risk of stigmatization. Reintegration programmes shall be gender transformative, meaning the programme actively works to transform harmful, gender inequitable norms, into positive ones, and address power imbalances, at every stage of reintegration support. By transforming harmful, inequitable gender norms and values into positive ones, DDR practitioners can support countries and communities to increase gender equality, deconstruct violent or harmful versions of masculinities, promote and elevate women\u2019s role as leaders in their communities, prevent sexual violence and gender-based violence, transform negative beliefs, and improve the sexual and reproductive rights and health (SRHR) of all (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). DDR programmes provide unique opportunities to support such work and they have a mandate to do so. In order to implement gender-responsive and transformative reintegration programmes, UN and government DDR practitioners, implementing partners and other stakeholders may need to receive training in gender-sensitive approaches and good-practices, as well as other capacity development support. Public information and sensitization campaigns concerning reintegration support may also benefit from collaboration with women\u2019s and men\u2019s organizations to address gender-specific needs. Careful thought to deconstructing violent masculinities/male warrior roles and to depicting women, men, and persons of different gender identities and expressions as respected community members is one critical opportunity to integrate gender transformation (see IDDRS 4.60 on Public Information and Strategic Communications in Support of DDR). Thoughtful engagement and equal leadership opportunities in information, education and communication work also is a gender transformative approach. Monitoring and evaluation for reintegration programmes shall also include gender-related indicators. Where possible, gender-responsive budgets and careful tracking of spending and resource allocation on gender issues in reintegration programmes should be considered. For further information, see IDDRS 5.10 on Women, Gender and DDR. 4.4 Conflict sensitive A conflict-sensitive approach involves ensuring a sound understanding of the two-way interaction between activities and context, and acting to minimize the negative impacts and maximize the positive impacts of intervention on conflict, within an organization\u2019s given mandate. The first principle that is usually applied in a conflict-sensitive approach is do no harm; however, conflict sensitivity goes beyond this. To do no harm and to support local capacities for peace requires: An awareness of both the intended and unintended consequences of reintegration programming; Continuous analysis of the conflict context and the programme, examining how reintegration support interacts with the conflict; A willingness to adapt, create options and, if needed, redesign programmes to improve quality; Careful reflection on staff conduct and organizational policies, to ensure that the behaviour of individuals and organizations meets the highest standards of ethics and professionalism. Conflict analysis and risk mitigation measures shall be applied as key components of a conflict sensitivity approach, as well as integrated into monitoring and evaluation processes. 4.5 Flexible, accountable and transparent 4.5.1 Flexible, sustainable and transparent reintegration programmes and funding arrangements Reintegration support shall be context-specific and designed in a way that allows flexibility, tailored to specific circumstance. Reintegration programmes are funded by national budgets and/or voluntary contributions from donors. As it may be challenging to mobilize voluntary contributions (see section 8.4.6), funding arrangements shall remain flexible. \t 4.5.2 Accountability and transparency Reintegration programmes shall be based on the principles of accountability and transparency. Public information and communications strategies and policies shall therefore be drawn up and implemented as early as possible. Public information allows affected participants and beneficiary groups to receive accurate information on the principles and procedures of reintegration programmes. Relevant entities of the UN system shall also remain transparent vis-\u00e0-vis the Government and its institutions in regard to activities and plans in support of reintegration, particularly if not fully agreed upon in advance. 4.6 Nationally and locally owned The primary responsibility for the implementation of reintegration support or the implementation of reintegration programmes rests with the national authorities and their local institutions, with the UN playing a supporting role if requested. It is essential that DDR practitioners do not act as substitutes for national authorities in programme management and implementation. Instead, they shall ensure that reintegration programmes include provisions for the capacity building of national authorities in contexts where this is necessary. 4.7 Regionally supported In some contexts, there may be regional dimensions to reintegration support, such as cross-border flows of small arms and light weapons (SALW); trafficking in natural resources as a source of revenue; cross-border recruitment, including of children; and the repatriation and reintegration of foreign combatants in their countries of origin. The planning, design and implementation of a reintegration programme shall therefore consider the regional level in addition to the individual, community and national levels (see IDDRS 5.40 on Cross-Border Population Movements). 4.8 Integrated Reintegration programmes both influence and are affected by wider recovery, peacebuilding and state transformational processes. DDR practitioners engaged in supporting reintegration programmes shall therefore work to forge partnerships and to work collaboratively with line ministries, other programmes and stakeholders to achieve policy coherence, sectoral programme integration and UN inter-agency coordination. In addition, the use of technical working groups, donor forums and rapid response modalities shall be used to further integrate efforts in the area of reintegration support. 4.9 Well planned 4.9.1 Safety and security In some cases, it may not be safe for former members of armed forces and groups and their dependants to return to their home communities. This may be the case, for example, if armed forces and groups are still active in certain areas. Ex-combatants and persons formerly associated with armed forces and groups may fear retaliation by active armed forces and groups against themselves and their families. This possibility shall be monitored through a security and risk assessment (see section 7.4.3), and those affected shall be informed of the risks and appropriate responses should be provided to address the identified risks. 4.9.2 Planning, assessment, design, and monitoring and evaluation Well-planned reintegration processes shall assess and respond to the specific needs of its female and male and non-binary participants and beneficiaries, who might be children, youth, adults, elders, persons with chronic illnesses and/or persons with disabilities. Planning shall be conducted jointly with national institutions and in close collaboration with related humanitarian and development programmes and initiatives implemented by the government and by national and international organizations. Representatives of ex-combatants and persons formerly associated with armed forces and groups shall also participate meaningfully in this stage to ensure that their needs, concerns and capacities are taken into account. The monitoring and evaluation of a reintegration processes shall not be a one-off effort conducted in an institutional silo, but shall form part of joint assessments and planning. For more information, see section 8.4.5 and IDDRS 3.50 on Monitoring and Evaluation. Transitioning from reinsertion to reintegration When a DDR programme is in place, reintegration support typically follows short-term reinsertion assistance that is provided as part of demobilization (see IDDRS 4.20 on Demobilization). Reinsertion assistance is not intended to act as a substitute for reintegration support, as it is designed to provide former members of armed forces and groups, whether male, female or with other identities with transitional assistance to meet their immediate needs for a period of up to one year. There are many different ways in which reinsertion assistance can be provided, including cash-based transfers, vouchers, in-kind support, public works programmes, vocational training and/or income generating activities. Community Violence Reduction (CVR) may also be used as stop-gap reinsertion assistance at the community level, while reintegration support is still at the planning and/or resource mobilization stage (see IDDRS 2.30 on Community Violence Reduction). Those planning the reintegration component of a DDR programme shall work in tandem with those planning the disarmament and demobilization phases to ensure a smooth transition. For example, it shall be ensured that the reintegration programme has sufficient resources and capacity to absorb the groups to be demobilized for a minimum of 3 years. DDR practitioners should also carefully consider the transition from reinsertion to reintegration support, especially when moving from targeted individual assistance to community-based programming (see section 6). One possible approach is to gradually reduce individual assistance over time, while community-based support is gradually introduced. If reinsertion assistance is well designed, funded and implemented, it can demonstrate immediate peace dividends to communities and create conditions more conducive to reintegration programming. However, if reinsertion assistance is poorly designed, funded and implemented, it may negatively affect longer-term reintegration prospects. In mission settings with a DDR programme, peacekeeping budgets will cover up to one year of reinsertion assistance. In contrast, reintegration support will be provided through national budgets and/or voluntary contributions from donors. In these contexts, to the extent possible, reinsertion and reintegration support should be jointly planned to maximize efficiency and impact. In non-mission and special political mission (SPM) settings, reinsertion assistance and reintegration support are not necessarily distinguished because they are funded through national budgets and voluntary contributions to national programmes and UN agencies, programmes and funds\u2019 initiatives. They should therefore be planned and implemented as a single and continuous programme. Figure 1: Transition from reinsertion to reintegration When a DDR programme is not in place, reintegration support may still be provided as part of a DDR process, either as stand-alone assistance or in combination with CVR and other DDR-related tools (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In mission settings, CVR will be funded through the allocation of assessed contributions while reintegration support is funded through national budgets and voluntary contributions. DDR practitioners should therefore ensure that planning for both is linked. In non-mission settings, funding for both CVR and reintegration support will depend on the allocation of national budgets and/or voluntary contributions from donors. Therefore, in instances where CVR and support to community-based reintegration are both envisaged, they should, from the outset, be planned and implemented as a single and continuous programme. Where appropriate, early elements of reintegration support can be part of CVR programming. 6. Approaches to supporting reintegration DDR practitioners shall employ a comprehensive approach to support the reintegration of ex-combatants and persons formerly associated with armed forces and groups, including: (1) targeted individual reintegration support, (2) community-based reintegration support, and (3) combined approaches. These approaches are not mutually exclusive. Rather, they can be used together, with appropriate timing and sequencing, in order to assist the reintegration process most effectively in a particular context. Support should always include both individual and community perspectives, however, the combination of these approaches depends on the context, including the political dynamics and institutional capacity on the ground. Reintegration support is likely to require a different approach in each situation, responding to specific needs and circumstances. Based on relevant data, and thorough analysis, DDR practitioners should support national partners and stakeholders to come to a consensus on what may be the most appropriate approach(es). 6.1 Targeted individual reintegration support Targeted individual reintegration support provides individuals with concrete assistance based on clear and verifiable eligibility criteria. Economic support is geared towards enhancing the employability of ex-combatants and persons formerly associated with armed forces and groups and their access to productive assets and opportunities. It may, for example, include cash assistance in the form of grants or loans, technical advice, or training and mentoring. Advice and follow-up usually aim to keep each individual focused on their plan and help him/her adapt to the changing environment. In addition, the assistance should include activities and means aiming to facilitate an individual\u2019s social reintegration, such as access to life or core work skills training and psychosocial assistance. Social and psychosocial reintegration support recognizes that individuals have undergone a conditioning or socialization to the use of violence, experienced and/or witnessed traumatic events, including sexual violence, that have led to nervous system dysregulation, often experienced shifts in gender roles and identities (including violent or militarized masculinities and femininities), and may use/abuse substances to cope with these experiences or their adjustment to civilian life. Reintegration support that is individually targeted may be provided as a continuation of individually targeted reinsertion assistance or may follow and build upon this support. Targeted individual reintegration support should ideally be needs-based to address specific issues related to literacy, disability, chronic illness, sexual violence recovery, discrimination, protection and/or psychosocial issues including those related to trauma. In this sense, targeted reintegration support is preferably provided based on the assessment of individual needs rather than the simple status as ex-combatant. It is important to note that some of these needs are not merely needs from a humanitarian perspective, but their fulfilment also helps individuals to more fully participate in society, engage in reconciliation processes, and take an active role in peacebuilding. 6.1.1 Considerations for targeted reintegration support Best practice demonstrates that reintegration support should include both individual targeted support as well as community-based support. How much of each type of support depends on the context. Armed groups may make individual reintegration support to their members a condition for agreeing to a peace process. If the provision of individual support has been included in a peace agreement, this should be adhered to, but should be complemented by community-based support as soon as possible. Targeted individual reintegration support is resource intensive and often faces significant operational challenges, which may impede its effective implementation. The effectiveness of individual targeting is conditional upon the existence of minimum security conditions, to be determined on a case by case basis, proper assessment and treatment of individual needs, and the existence of institutional capacities to deliver individual assistance and monitor status. In the absence of such conditions and capacities, targeted reintegration support risks providing generic support since assistance is based on the status of former combatants instead of a careful treatment of individual needs. It is therefore useful to identify the possible benefits and challenges of individually targeting (part of) reintegration support. Considering these pros and cons can ensure an informed decision-making process can take place which responds to the specific reintegration programme context. Benefits of individual targeted support to former members of armed forces and groups are: Offsetting the risks that individuals are or could become threats to the security of their community: If the needs of ex-combatants are not addressed in a timely manner, for example through individual case management and continuous accompaniment, these individuals may become a threat to the security of their communities or society as a whole. Individually targeted support can enable the identification of the specific needs of ex-combatants and persons formerly associated, in a gender, age and disability sensitive manner. Individual targeting allows analysing individual aspects which impact the reintegration process, such as motivations to join the armed group, perception of security, levels of education, social environment, psychosocial profile, socio-economic opportunities in areas of return and others, which are critical for the delivery of effective reintegration support. Individual targeted support can enable monitoring the impact of the reintegration through assessing personal needs on a regular basis; this can be achieved through case management where weekly/monthly contacts with the individuals receiving assistance take place or through interviews with community members, local leaders and relevant entities. Individual targeted support provide a clear measure for success, namely how many of the supported individuals returned to violence or reintegrated successfully in their families and communities. Challenges of a targeted individual support to former members of armed forces and groups are: Targeted individual assistance has the potential to encourage individuals to join armed forces and groups and commanders to allow their units to increase in size so that more members can benefit. This however may be addressed, for example, by adopting clear and unambiguous eligibility criteria, with clear cut-off dates and capping the number of individuals who are eligible for support (see section 6.1 in IDDRS 4.20 on Demobilization). Targeted individual assistance, especially where it is not accompanied with assistance to other conflict-affected groups, in contexts where there is no parallel community support, may contribute to feelings of resentment among community members and the broader population, seeing that ex-combatants receive support whereas victims and affected communities are left without assistance and/or reparation. Providing targeted economic support to ex-combatants may not always be the most effective way of dealing with the potential threat that former members of armed forces and groups may pose to the security of communities. Targeted economic assistance involves a higher risk that resources provided to support reintegration will be \u2018taxed\u2018 by the leadership of (former) armed forces and groups, similar risk applies to community-based reintegration in areas controlled by armed groups. In some circumstances, it is not practical or even possible for former members of armed forces and groups to be identified and verified, since their specific status is not always clear or undisputed. In other situations, ex-combatants and persons formerly associated with armed forces and groups may have spontaneously returned to their communities of origin or choice, making any official regrouping for verification counter-productive or dangerous. For e.g. former part-time combatants or those who played supporting roles in armed forces and groups, ex-female combatants and/or women formerly associated who more often return to communities without joining programmes to avoid more discrimination and stigmatization and those with disabilities and/or deemed unfit for combat after injury who may be left behind. There may be a risk of stigmatization or reprisal where former members of armed forces and groups are clearly identifiable as a result of the assistance. This is likely to apply to female combatants. Female ex-combatants and women formerly associated with armed forces and groups are often excluded by commanders and miss out on targeted individual reintegration support. In cases where targeted individual assistance reaches the family unit via a male ex-combatant, the utilization of the assistance may not always be in the best interests of the family unit as a whole. While there are benefits and challenges to using individual targeting, the biggest reason for using it is that it can effectively respond to the specific needs of DDR participants and when combined with community-based reintegration support it can provide a comprehensive approach to reintegration that supports the individual, family and community. 6.1.2 Cash in support of reintegration Cash-based transfers include cash; digital transfers, such as payments made to mobile phones (\u201cmobile money transfers\u201d); and value vouchers. Value vouchers \u2013 also known as gift cards or stamps \u2013 provide access to commodities for a given monetary amount and can often be used in predetermined locations, including selected shops. Public works programmes, or cash-for-work projects in agricultural and natural resource sectors in rural areas, also create temporary opportunities for former members of armed forces and groups to receive cash as part of a reinsertion package. When targeted individual support is to be included in a reintegration programme, cash-based transfers should be considered, as should synergies with cash-based transfers provided as part of transitional reinsertion assistance. For more detail on the pros and cons of cash-based transfers, refer to IDDRS 4.20 on Demobilization, section 7. Within an organized crime\u2013conflict context, DDR processes may also present the risk of reinforcing extortion schemes through the payment of cash/stipends to DDR participants as part of reinsertion assistance. Practitioners should consider the distribution of payments through the issuance of pre-paid cards, vouchers or digital transfers where possible, to reduce the risk that participants will be extorted by those engaged in criminal activities, including armed forces and groups (see Module 6.40 DDR and Organized Crime). 6.2 Community-based reintegration support Community-based reintegration (CBR) is an approach that empowers people within communities to identify, plan and implement programmes with support from governments and DDR practitioners. In contexts of ongoing conflict, limited institutional capacity and lack of resources, the implementation of CBR projects may be favoured in order to build community resilience and increase its capacity to absorb former combatants. Furthermore, where individual targeted support is provided, CBR activities should be implemented as a valuable addition, selecting communities which are hot spots, those which see large numbers of DDR participants returning, including formally demobilized or self-demobilized combatants, or where there is potential of recruitment of community members, among the self-demobilized individuals. CBR takes place at the community level and is community-owned, includes full community participation in decision-making processes, and focuses on the community as a whole rather than only pre-defined groups, which allows for a conflict-sensitive and inclusive approach to project identification. Within this approach, ex-combatants and persons formerly associated with armed forces and groups do not receive targeted individual support, but benefit from the same support provided to other members of the community. By empowering communities to take action and fulfil certain roles, this approach may allow delivering certain activities which would otherwise require the deployment of professional and experts external to the community. For instance, depending on local capacities, local peace and development committees and civil society organizations can engage with former combatants, persons formerly associated with armed forces and groups and their dependents and support their reintegration. CBR supports the capacity of the community to \u2018absorb\u2019 ex-combatants and persons formerly associated with armed forces and groups, whilst also attending to the needs of the overall community. Community members should define their own needs as part of a transparent, participatory process. CBR can, for example, include support to the rehabilitation of shared community goods, such as wells, classrooms, markets, bridges, health facilities, irrigation channels or other public infrastructure. It may also include psychosocial support and referral systems, employment centres, social skill building, conflict resolution mechanisms, or community associations that focus on engagement in civic life and civic responsibilities including voting. While an advantage of CBR is that assistance is provided to ex-combatants and persons formerly associated with armed forces and groups as members of the community, a disadvantage is that CBR may not directly address their specific ex-combatants' needs. When their specific needs are not addressed it can lead to resentment, disenfranchisement, and lead to re-recruitment and compromise sustainable peace. In addition, while CBR enables prioritization, the selection of the most relevant areas and communities for support may exclude and marginalize others, which in turn may also cause inter-communal resentment and fuel tensions, unintentionally cause harm and jeopardizing local peace. Strong conflict and security analysis is key to mitigate this risk. When considering a community-based reintegration approach, it is essential that DDR practitioners understand what other recovery and peacebuilding programmes may be addressing, including in the areas of reconciliation and transitional justice, including reparations, and natural resource management. Through meaningful community engagement, reintegration programmes will be better able to identify opportunities for ex-combatants, to address the harms and grievances affecting ex-combatants and victims, pinpoint potential stressors, identify priorities for victim and community recovery projects, and fully consider relevant transitional justice issues affecting victims and former members of armed forces and groups. However, while it is crucial to involve communities in the design and implementation of reintegration programmes, their capacities and commitment to encourage ex-combatants\u2019 reintegration should be carefully assessed. See 9.2.1 on Reconciliation in this module, and IDDRS Module 6.20 on DDR and Transitional Justice, and IDDRS Module 6.30 on DDR and Natural Resource Management. 6.2.1 Area-based interventions CBR support should be focused on specific communities or geographical areas that are likely to receive large numbers of ex-combatants and persons formerly associated with armed forces and groups. Area-based interventions should aim to use locally-based resources and to work closely with local businesses, civil society, local business development service provides and local investors. The networks and economic flows that affect (or could affect) the defined territory shall be considered. In conflict contexts, natural resource management is typically already a part of existing livelihoods and employment opportunities, in both formal and informal sectors. In area-based interventions there is a particularly unique opportunity to help improve sustainability and resiliency in these key livelihoods sectors including through partnership with both public and private businesses (see IDDRS Module 6.30 on DDR and Natural Resource Management). 6.2.2 Role of local peace and development committees Local peace and development committees (LPDCs) can play a pivotal role in CBR. These are structures at the level of a district, municipality, town or village, which aim to encourage and facilitate joint, inclusive decision-making on peace and development processes within the specific context. When LPDCs are composed of all key stakeholders of the community \u2013 relevant official and/or traditional authorities, civil society representatives such as victims\u2019, religious and women\u2019s organizations representatives, and the private sector \u2013 they increase legitimacy in the decision-making around community-based projects. However, oftentimes LPDC\u2019s do not include stakeholders of all members of the community, are not gender inclusive and, frequently, marginalized segments of society, including victims, women, ethnic and religious minorities, and male, female, and non-binary ex-combatants or persons formerly associated with armed forces and groups, are not represented. Therefore, DDR practitioners may need to work actively with LPDCs and community leaders to ensure projects defined by them have inclusive practices, which truly represent the needs of the community. UN-supported programmes also have a 20% minimum of support, which must be directed towards the specific needs of women and girls. Such committees or similar structures \u2013 if existing \u2013 should play a fundamental role during the consultation, planning and implementation of CBR approaches. For example, they should be empowered to identify the infrastructure that needs to be rehabilitated, or services that need to be offered or improved at the community level, as well as assist in the prioritization and/or selection of those groups (ex-combatants and persons formerly associated with armed forces and groups, displaced persons, female heads of households, persons with disabilities, youth at risk, etc.) to be employed in these projects and services. 6.3 Combined approaches Elements of CBR and individual targeting can be combined into one reintegration programme, using the approaches listed below. Every program should have a combination of individual and CBR approaches, however, the balance between those will be different depending on the context. \t 6.3.1 Dual targeting Providing reintegration support that simultaneously targets individual former members of armed forces and groups and members of their communities is known as dual targeting. An example is when a % of reintegration support is destined towards male, female and non-binary ex-combatants and persons formerly associated with armed forces and groups, the remaining % is destined towards conflict-affected community members. Proportions may vary according to the context. Experience has shown that targeting community members who have a similar profile to former members of armed forces and groups (such as unemployed youth), can have particularly positive results. Specific efforts should be made to include women and victims. As this approach involves targeting, the benefits and challenges listed above (in section 6.1.1) shall be assessed and considered during planning. 6.3.2 Community-focused actions co-led by former members of armed forces and groups Through consultation and dialogue with community and civil society leaders, former members of armed forces and groups, whether male, female or with other gender identities, can identify, lead and implement activities which are best suited to the community and to their own skill sets. Such activities can provide ex-combatants and persons formerly associated with armed forces and groups with a sense of ownership over the reintegration achievements that take place at the community level. These activities can also help to build rapport between former members of armed forces and groups and community members. 6.3.3 Focus on mid-level commanders In order to prevent mid-level commanders from becoming spoilers, reintegration programmes may have to devise assistance strategies that differ from those provided to the rank-and-file members of armed forces and groups. Such assistance strategies (sometimes known as \u201ccommander incentive programmes\u201d) must be informed by an assessment of the particular needs and interests of mid-level commanders, as well as by an in-depth understanding of the drivers that my lead them to in fact become spoilers. Strategies may include preparation for nominations/vetting for public appointments, redundancy payments based on years of services, and guidance on investment options, expanding a family business and creating employment. 6.4 Information, Counselling and Referral System Regardless of the balance of approaches utilized, an effective way to address the specific needs of individuals is the establishment of an Information, Counselling and Referral System (ICRS). An ICRS can store data not only on the reintegration intentions of ex-combatants and persons formerly associated with armed forces and groups, but on the available services and reintegration opportunities identified during the economic and labour market opportunity mapping, services mapping and capacity assessment outlined below (see sections 7.1.2 and 7.1.3). It can equally therefore serve community members when using community-based approaches or dual targeting. ICRS caseworkers should be trained in basic counselling techniques and refer those participating in the reintegration programme to services/opportunities including peacebuilding and recovery programmes, governmental services, potential employers and community-based support structures. Counselling involves the identification of individual needs and capabilities, and may lead to a wide variety of referrals, ranging from job placement to psychosocial assistance to voluntary testing for HIV/AIDS (see IDDRS 5.60 on HIV/AIDS and DDR). An ICRS may also be used to compile data on the recipients of reintegration support that is then used for monitoring and evaluation. Particularly when no entitlement-based economic assistance is being provided as part of a reintegration programme, an ICRS can play a crucial role. For further information on case management and an ICRS, see section 6.8 in IDDRS 4.20 on Demobilization. 7. Analysis and assessments for reintegration programming Reintegration support should be based on a broad set of reliable conflict- and gender-sensitive assessments. These assessments should be conducted 9 \u2013 12 months before the disarmament and demobilization phases of a DDR programme in order to allow adequate time for programme planning and design. The information should be revised and updated following the profiling of individuals during the demobilization phase, based on new data concerning areas of return, ages/gender, level of education and skills. The individual profiling should be contrasted with socio-economic assessment, serving as the basis for the design of projects based on individual needs and expectations as well as market dynamics and economic opportunities in the communities of return. These same assessments should also be conducted as early as possible when reintegration support is expected to follow DDR-related tools (such as CVR) or be provided as stand-alone support. All assessments shall be disaggregated by sex and age, and include data on specific sub-groups such as foreign combatants, persons with chronic illnesses and persons with disabilities. Assessments should also be regularly updated and, where possible, conducted jointly with other relevant stakeholders. At a minimum, assessments should answer the basic list of key reintegration planning questions outlined in Box 1 below. The questions in Box 1 below should be comprehensively answered and constantly reappraised during the planning and implementation of reintegration programming as this will help to enhance the programme\u2019s strategy and resource allocation. Those involved in the negotiation, planning and design of reintegration programmes shall also be aware of existing policies, strategies and frameworks on reintegration and recovery to ensure adequate coordination. Opportunities to link reintegration programming to wider programming shall be carefully assessed. Partnerships with institutions and agencies leading related programming should be sought to ensure the most effective use of resources, ensure complementarity and to avoid duplication. The information collected during the disarmament and demobilization phases, in particular profiling, will inform reintegration programming. In a similar manner, many of the assessments conducted to inform the design of reinsertion assistance and CVR programmes (if applicable) will be relevant to programming for reintegration support and should be consulted, such as: a conflict and security analysis; economic opportunity mapping, including labour market analysis (including private sector analysis) and review of the local economy\u2019s capacity to absorb cash inflation (if cash-based transfers are being considered); gender analysis; feasibility studies; and assessments of the capacity of potential implementing partners. For further information on these assessments, see IDDRS 2.30 on Community Violence Reduction, IDDRS 3.11 on Integrated Assessments and IDDRS 4.20 on Demobilization. 7.1 Mainstreaming gender into analysis and assessments The planning and design of reintegration processes shall be based on the collection of data disaggregated by sex and shall ensure the inclusive and meaningful participation of diverse stakeholders. The gathering of gender-sensitive data will elucidate the unique and varying needs, capacities, interests, priorities, power relations and roles of women, men, boys, girls and non-binary individuals. The overall objective of integrating gender into analysis is to build efficiency and equity into reintegration programmes. By taking a more gender-sensitive approach from the start, these programmes can make more informed decisions and take action to ensure that women, men, boys, girls and non-binary individuals equally benefit from reintegration opportunities. In both conflict-affected and peaceful environments, violent masculinities and femininities are shaped by socially constructed and perpetuated norms related to the use of violence. Understanding the motives for violence, social influences, and socialization into the use of violence is necessary so that reintegration programmes can be designed to identify and break the patterns that increase the likelihood of falling victim to and/or perpetrating violence. When planning for reintegration support, DDR practitioners should consider how gender roles may be renegotiated and how different population groups may participate equally in all programming. DDR practitioners should also identify entry points for improving the overall gender-responsiveness of reintegration programming, thereby improving resilience and helping to prevent the resumption of violence. For more information on gender-sensitive programming, see IDDRS 5.10 on Women, Gender and DDR. 7.2 Conflict and security analysis The nature of the conflict influences the objectives and expected results of DDR, including the type of reintegration support that is required. Conflict and security analysis shall be conducted in order to clarify the nature and drivers of the conflict, how it was resolved (if resolved at all), and to identify any potential social, economic or political challenges related to reintegration. An early conflict and security analysis, which includes information on available dispute mechanisms, will assist DDR practitioners to identify the impact, availability and effectiveness of land and property dispute mechanisms. This analysis can also provide critical information on the structure of armed groups, how former members of armed forces and groups are perceived by their communities (i.e., as heroes who defended their communities or as perpetrators of violent acts and human rights violations/abuses), and what expectations former members of armed forces and groups may have. Table 1 provides a list of questions that, at a minimum, should be considered as part of a conflict and security analysis. DDR practitioners may also consult the United Nations Development Group Conflict and Development Analysis Tool, which provides an agency-neutral approach to conflict analysis as an integral part of the UN Sustainable Development Cooperation Framework (formerly the UN Development Assistance Framework). Table 1: Conflict and Security Analysis \u2013 Possible Questions 7.3 Recovery and peacebuilding assessments (RPBAs) An RPBA offers a standardized and internationally recognized approach to support Governments to identify the requirements for immediate and medium-term recovery and peacebuilding. RPBAs lay the foundation for the elaboration of a longer-term recovery and peacebuilding strategy and serve as a platform for joint analysis and planning. An RPBA typically produces an agreed upon strategic, prioritized and sequenced recovery and peacebuilding plan, a results matrix, and proposals for implementation and financing arrangements. DDR practitioners should endeavour to introduce reintegration support into all necessary dimensions \u2013 economic, social/psychosocial and political \u2013 of RPBAs, in countries where these assessments are being conducted. 7.4 Reintegration assessments focused on members of armed forces and groups 7.4.1 Early profiling and pre-registration surveys Planning for reintegration support should be informed by an analysis of the preferences and needs of male, female and non-binary ex-combatants and persons formerly associated with armed forces and groups. When feasible, surveys should be conducted with a random and representative sample of members of armed forces and groups. The disarmament and demobilization phases constitute a key opportunity to compile useful information, before individuals return to host communities. The information compiled can be contrasted with socio-economic assessment and guide the design of reintegration programming. interviews and surveys will establish the nature and size of the armed forces and groups for which reintegration support is to be designed. They should include information on the demographics of armed groups as well as the aspirations of their members and the areas they would like to go (or return) to. A minimum set of questions to be included in this survey can be found in Annex 1. Where possible, surveys should be supplemented by conflict\u2013sensitive data on specific needs groups and additional research on the socio-economic, political and historical setting should be conducted, where possible, by scholars from the country or region. The collection of this data provides baseline information for the planning and design of a monitoring and evaluation plan. Early profiling and pre-registration surveys shall consider gender-sensitive procedures, so that women, men, boys, girls and non-binary individuals are able to accurately state their involvement and needs and other relevant information. 7.4.2 Full profiling and registration If reintegration support is provided as part of a DDR programme, then profiling and registration data collected during disarmament and demobilization should also be used (see section 6.3 in IDDRS 4.20 on Demobilization). However, as this data can be gathered relatively late, is it better suited for making adjustments to the reintegration programme rather than for initial planning purposes. 7.4.3 Identification and assessment of (potential) areas of return and resettlement The areas that former members of armed forces and groups may wish to return to will be identified using the aforementioned survey and/or profiling exercise. Once identified, the opportunities and constraints for reintegration in these areas shall be assessed. This assessment should take place as early as possible and, at a minimum, should include: A risk and security assessment; Community perception surveys; Economic opportunity mapping; Social, psychosocial, and political opportunity mapping; and Services mapping and institutional capacity assessment. These assessments should also be used as an opportunity to begin the process of sensitizing community members to the reintegration process. Risk and security assessment A comprehensive risk and security assessment should be conducted to inform the planning of reintegration programmes and to identify threats to the reintegration programme, its participants and beneficiaries, as well as DDR practitioners supporting the programme. The assessment should identify the tolerable risk (the risk accepted by society in a given context based on current values), and then identify the protective measures necessary to achieve a residual risk (the risk remaining after protective measures have been taken) that corresponds to the tolerable risk. Risks related to women, youth, children, dependants, and other specific-needs groups should also be considered. The risks associated with reintegration support may include: Former members of armed forces and groups may be reluctant to return to their home areas and participate in reintegration processes if these areas are still occupied by active members of their former group. This is because they may face retaliation, either against themselves or their family members, and/or social exclusion or targeting. This is particularly likely if those who have left are perceived as traitors by those who remain. If multiple armed groups are active, individuals may participate in a reintegration programme, only to then re-join an armed force or group (either their previous group or a new one), or a local criminal network; If former members of armed forces and groups are regarded as perpetrators of violent acts, community members may stigmatize and refuse to accept these individuals; When reintegration support is provided to a particular community or area as part of a CBR programme, this may create a backlash among communities/areas that are not recipients of such support; If CBR support is being provided in a conflict-affected country, this community may be drawn into ongoing conflict; CBR support may be inadvertently provided to communities that remain supportive of active armed forces or groups; If appropriate safeguards are not in place, reintegration support that is targeted towards individual ex-combatants and persons associated with armed forces and groups may be used by participants in the reintegration programme for purposes other than which it was intended, i.e., to feed the war and/or criminal economy. These risks shall be identified, assessed, monitored and mitigated. They shall also be balanced against the opportunities that reintegration support may create in working towards a peaceful solution to conflict. Questions that DDR practitioners should consider in this regard are outlined in Table 2. Table 2: Balancing risks and opportunities If reintegration support is being provided in settings of ongoing armed conflict where no DDR programme is in place, DDR practitioners shall seek to identify positive entry points for pilot reintegration programmes, such as pockets of peace not affected by military operations or other types of armed violence (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace). In these contexts, supporting reintegration will be more challenging and rapid, reliable and integrated assessments are particularly important. If no framework for reintegration support is in place, then targeted reintegration support (see section 6.1) shall not be provided. Breaking out of silos and acting as One UN is particularly important as uncoordinated efforts could fuel conflict. In the event that ongoing conflict means that reintegration support is too risky and/or not operationally feasible, alternative means of support should be considered. Community perception surveys Communities are not homogeneous entities and different individuals within the same community may have different opinions towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may see members of armed forces and groups as victims of political actors while others may simply be happy to be reunited with family members. Community perception surveys shall be used to assess the strength of support for (or opposition to) the reintegration of former members of armed forces and groups in particular communities, and the various options and modalities through which this can be achieved. These surveys shall also be used to ensure that reintegration programming is tailored to the needs and desires of particular communities. Surveys may also be used to design appropriate strategic communication campaigns with the view of mitigating the negative impact of misinformation and disinformation and to transform attitudes in communities in such a way that it is conducive to safe and sustainable reintegration (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). Community perception surveys shall consider a range of processes that facilitate and encourage participation and ensure that the views of vulnerable or marginalized groups, and groups who are at risk of discrimination, are adequately represented. This may, for example, require specific attention to victims, ethnic and religious minorities, women, youth, non-binary individuals etc. .Where cultural barriers exist, such as the need to have female surveyors to survey female-identified community members, pre-planning is undertaken to ensure the proper human and financial resources are available to make this possible. Wherever possible, community perception surveys should be carried out by local institutions and/or civil society. Community members should be given the opportunity to freely express themselves, during interviews or focus groups. However, caution should be taken to ensure that expectations concerning the reintegration programme are not raised beyond a point that is realistically achievable. All data collected shall be disaggregated at least by sex, age, ethnicity and disability. Economic opportunity mapping DDR practitioners should participate, where possible, in developing a systematic, countrywide mapping that identifies existing and potential income generating opportunities and that builds upon RPBAs (see section 7.3). Collaboration, complementarity and join programming with development agencies and their monitoring activities is essential to this process. This mapping shall include an analysis of the functioning of: Markets (labour, capital, goods and services, supply and demand, etc.); Input factors (land, water, agricultural inputs, energy resources, infrastructure, technology and information etc.), including how inequities in the distribution of these factors may have played a part as a driver of conflict and/or existing grievances among communities; and Supporting factors (institutional capacity in formal and informal economies, financial markets etc.) Risk factors (security, sustainability, feasibility, etc) The analysis shall also capture: The overall economic situation of the country and of the areas where reintegration will take place; The sectors in which people are involved, the main occupations of the people in the areas where reintegration will take place, and whether these sectors/occupations present opportunities for former members of armed forces and groups; The most dynamic (or potentially dynamic) economic sectors with growth potential and the inputs required to make these sectors more efficient and equitable; The market-driven economic opportunities available to former members of armed forces and groups given their existing skill sets, and potential for the development and targeting of these skills sets towards employability; The potential for public-private partnerships; The existing infrastructure and services that allow economic activity to take place (for e.g., roads, communications, electricity supplies) and whether there is an opportunity for former members of armed forces and groups to work on infrastructure development; The bottlenecks that prohibit value chain development locally, regionally or internationally (i.e., quantity produced, scarcity of resources, quality standards, transportation and access to markets, market information, government export regulations, importer regulations, etc.); The existence of other recovery and development initiatives and possible linkages to these initiatives; The security situation; Potential financial service providers or training institutions available to support self-employment; Existing public employment services and labour market programmes, including job search assistance and matching services, labour market information, self-employment and entrepreneurship support, public employment programmes, subsidized employment through wage and/or hiring subsidies; Existing social assistance programmes such as unemployment benefits/allowances, transport and housing support; Access and cultural relationships to land and other natural resources; Historical access to employment and labour market opportunities and any associated tensions; Education and training possibilities; Micro-credit services (in contexts where they exist) and other employment and business development services (i.e., technical advisory, information and career guidance/counselling services). Other development programmes (both existing and planned) within the national recovery effort, as well as those planned by international development organizations. Political dynamics, including formal and informal leadership, power structures, relationships and group dynamics within receiving communities and among those who return; Regional dynamics; Throughout this mapping exercise, consideration shall be given to the specific needs, capacities and experiences of diverse population groups. Local and traditional knowledge related to the ownership of land, resource use, and the management of natural resources (including agricultural practices in cultivation, animal husbandry, rangelands and fishing rights) should also be gathered. Social, psychosocial and political opportunity mapping DDR practitioners should participate, where possible, in developing a systematic, countrywide mapping that identifies existing and potential social, psychosocial and political opportunity mapping with due consideration of the following: Mental Health and Psychosocial Support services in urban and rural areas where the reintegration programme will take place as well as services available at the national level. Organizations or Government programmes providing life skill building in conflict resolution, civic education including voter rights and political engagement, interpersonal skills, social and emotional intelligence, nervous system regulation, mental health literacy, self-value and self-respect, critical thinking, problem solving and decision making, basic financial management Organizations or Government programmes providing awareness raising or behaviour change programmes in reproductive health, gender equality, gender identities, transforming harmful cultural norms, sexual and/or gender-based violence prevention, etc. Health services for sexual violence recovery, reproductive health including STIs, maternal health, and HIV/AIDS Social support services for people living with HIV/AIDS, trauma and drug abuse counselling and/or disability rehabilitation services. Services mapping and capacity assessment The capacity of government, civil society entities and service providers constitutes one of the most important aspects of successful reintegration support. It is therefore essential to collect data on levels of institutional capacities to ensure adequate funding for capacity development. Institutional capacity assessments shall start as early as possible with an analysis of potential service providers, such as public and private vocational centers, business development services, relevant line ministries and NGOs, including organizational practices and absorption capacities. 7.5 Political assessments As support to political reintegration may form part of a reintegration programme, DDR practitioners should understand the political and historical context, the structures and motivations of armed forces and groups, barriers to political participation, and how the way the conflict ended may affect political dynamics. For more detail on how to conduct these assessments, see section 5 in IDDRS 2.20 on The Politics of DDR. 7.6 Managing data collected in assessments A management information system (MIS) is essential to capture, store, access and manage information on former members of armed forces and groups, communities of return, and available opportunities for training, education and (self)employment. An MIS also provides data for monitoring, feedback and evaluation and informs ongoing decision-making regarding programme adjustments. DDR practitioners shall consider the design and maintenance of an MIS, such as the generic Disarmament, Demobilization, Reintegration and Arms Management (DREAM) system, that can be adapted to the needs of each reintegration programme. \tData on former members of armed forces and groups should be captured in an MIS prior to the start of reintegration support activities. The design and construction of the MIS should capture data that can be used to build a profile of each participant. The collection of sex, age, ethnicity and disability disaggregated data, including information on specific needs, is essential. The data in the MIS should also be easy to aggregate in order to provide regular updates for broad indicators. The use of biometric identification as part of an MIS can minimize \u2018double dipping,\u2019 particularly when cash is being provided. If the reintegration programme also has an ICRS (see section 6.3.4), this should be closely linked to the MIS. Data collection and management requires robust data protection mechanisms and procedures, compliant with applicable requirements of privacy and confidentiality. Information that identifies individuals or discloses an individual\u2019s personal characteristics should not be made public as a result of data dissemination. When personal data is released, this should only be done with the permission of the individual concerned or their appropriate representative. 8. Planning and design Planning for reintegration support shall be based on the aforementioned assessments. DDR practitioners should support Governments and national stakeholders to make decisions concerning the balance of reintegration approaches to be taken (i.e., targeted individual reintegration support, CBR or a combination of approaches). The advantages and disadvantages of different approaches shall be carefully weighed and mitigation measures (when risks are involved) shall be developed. Technical working groups may be formed to prepare proposals regarding the possible mix and balance of various reintegration approaches. Possible financial requirements should also be discussed. 8.1 Participatory, inclusive and transparent planning Planning for reintegration support shall involve a broad range of stakeholders. A participatory, inclusive and transparent approach to planning will significantly improve the reintegration programme by: Providing a forum for testing ideas that could improve programme design; Enabling the development of strategies that respond to local realities and needs; Providing a sense of empowerment and agency; Providing a forum for impartial information in the case of disputes or misperceptions about the programme; Ensuring local ownership; Encouraging reintegration support and other processes, such as peacebuilding and economic recovery, to work together and be mutually reinforcing; Encouraging communication and negotiation among stakeholders to reduce fear and to enhance reconciliation, trust and human security; Recognizing and supporting the capacity and voices of youth, women and persons with disabilities and/or chronic illnesses; and Recognizing new and evolving roles for women in society, especially in non-traditional areas such as security-related matters. Building respect for the rights of marginalized and specific needs groups; and Helping to ensure the sustainability of reintegration processes by developing the capacity of the community to provide services and establish community monitoring, management and oversight structures and systems. DDR practitioners involved in the planning of reintegration support should ensure that participatory planning includes: Representatives from the national DDR commission (if one exists); Representatives from the national government (including relevant line ministries and local government); Representatives from the private sector; Employers and workers organizations; Representatives from the armed forces and groups, including their leadership and membership: This engagement will help to ensure that the range of expectations (of leaders, of mid-level commanders and the rank and file) are, where possible, met in the programme design; Community members: Ultimately it is communities that will, or will not, accept former members of armed forces and groups. Through community engagement, DDR practitioners will be better able to support the Government to identify opportunities for ex-combatants and persons formerly associated with armed forces and groups; to pinpoint potential obstacles to reintegration; and to identify priorities for community recovery projects. Families, traditional and religious leaders, women\u2019s/men\u2019s/youth groups, organisations of persons with disabilities and other local associations should be consulted, and provided with support and training that allows them to actively participate in the planning process. 8.2 Planning for urban versus rural reintegration support When planning for reintegration support, the inherent differences between reintegration in urban and rural contexts shall be taken into account. Each bring their own opportunities and challenges. Reintegration support in urban areas can benefit from access to a wider range of services (e.g. schools, health clinics, jobs, security), whereas in rural areas, former members of armed forces and groups may have access to arable land and a supportive social network. Although former members of armed forces and groups may find a job in the urban informal sector, it is often much harder to obtain employment in the urban formal sector because labour market competition is high and limited formal jobs are available. Access to formal jobs may also be hindered if former members of armed forces and groups have low skill and education levels and a lack of prior work experience. This is likely to be the case for individuals who joined armed forces and groups at a young age. Female ex-combatants and women formerly associated with armed forces and groups also tend to face greater difficulties entering formal labour markets because of a return to pre-conflict labour patterns, and because women are often associated only with informal work. Male, female and non-binary DDR participants may also not have the same familial support networks in urban areas, particularly if they have chosen to resettle in an urban area rather than return home to a rural one. There may be many different reasons for this choice, for example, it may be difficult for ex-combatants to return home if they previously perpetrated violence against their community, or if their former armed group is still active in their home area. Cities may be appealing precisely because their higher population density means that ex-combatants find it easier to go unnoticed and to hide their ex-combatant identity. The skills that former members of armed forces and groups have, and may have gained during their group membership, may also have greater relevance and market value in urban settings than rural ones (for example, private security, mechanics, driving etc.). 8.3 Linkages with planning for wider stabilization, recovery and peacebuilding In order to support the humanitarian-development-peace nexus, reintegration programme coordination should extend to broader strategies and actors. Reintegration programmes shall be conceptualized, planned, designed and implemented as part of, or at least in close coordination with, wider stabilization, recovery and peacebuilding strategies. Linkages shall include, but not be limited to human rights promotion, transitional justice and reconciliation efforts (see IDDRS 6.20 on DDR and Transitional Justice), the resettlement of displaced populations and durable solutions to displacement, improved governance and security sector reform. To achieve coherence, when designing reintegration processes, UN practitioners should coordinate and, where possible, jointly plan programmes with actors working in these areas. In addition to former members of armed forces and groups, other conflict-affected groups (such as IDPs and refugees) may also be returning to the community. These groups are supported by a number of different UN agencies. From the earliest assessments and through all stages of strategy development, programme planning and implementation, information on the number and profile of individuals being supported should be shared. The use of Memoranda of Understanding between different agencies intervening in the same sector on the same issue is also an efficient means of establishing the terms of coordination and joint programming efforts. DDR practitioners shall also ensure that relevant recovery and development frameworks are identified and guide their programmes, with specific attention to national recovery /development plans and poverty reduction strategy papers, the UN Sustainable Development Cooperation Framework (formerly the UN Development Assistance Framework), and the UN Policy for Post-Conflict Employment Creation, Income Generation and Reintegration. This is vital to ensure that reintegration programming is linked to peacebuilding, transition, recovery and reconstruction strategies and that it will facilitate the involvement of the various UN and other international agencies. While all efforts shall be made to coordinate closely with other actors implementing related programmes, DDR practitioners should also clearly identify those objectives that the reintegration programme can deal with directly, and those to which it can only contribute. If national and sectoral frameworks and policies are at the planning stage, DDR managers should ensure that DDR practitioners engaged in the planning of reintegration programmes: Network with coordinating and participating agencies. Participate and provide inputs in wider recovery planning meetings and assessment missions. Ensure that the reintegration of ex-combatants and persons formerly associated with armed forces and groups is adequately reflected in key national and sectoral frameworks and policy documents. If national and sectoral frameworks and policies are at the implementation stage, DDR practitioners engaged in reintegration programmes should ensure that they: Continue to participate in wider recovery coordination meetings to identify areas for collaboration and partnership, including through strong local, national and international partnerships. Place reintegration programmes and plans of action within relevant national and sectoral frameworks and policies. Use the opportunities offered by reintegration programmes to provide concrete contributions towards the implementation of national and sectoral frameworks and policies. 8.4 Design of reintegration programmes A well-designed reintegration programme shall enhance basic security and support wider recovery and development efforts. When designing a reintegration programme, DDR practitioners should define strategies to address the following minimum elements: 8.4.1 Eligibility criteria If reintegration support is provided as part of a DDR programme, the eligibility criteria established for reintegration may be broader than for disarmament and demobilization. Combatants and persons associated with armed groups carrying weapons and ammunition shall participate in disarmament (see IDDRS 4.10 on Disarmament). In addition to these groups, all other unarmed individuals considered members of an armed force or group shall participate in demobilization. Reintegration should be provided not only to ex-combatants, but also to persons formerly associated with armed forces and groups, including women and children among these categories and, where appropriate, dependants and host community members. When the preconditions for a DDR programme are not present, or when combatants are ineligible to participate in DDR programmes, eligibility for reintegration support shall be decided by relevant national and local authorities, with support, where appropriate from relevant UN mission entities as well as UN agencies, programmes and funds. Eligibility for reintegration support in such cases should also take into account ex-combatants and persons formerly associated with armed forces and groups, including women, and, where appropriate, dependants and host community members. Children associated or formerly associated with armed groups should always be encouraged to participate in DDR processes with no eligibility limitations (see IDDRS 5.20 on Children and DDR). If potential participants in reintegration programmes are to receive individually targeted assistance, they shall be screened in order to establish their eligibility. If a DDR programme is in place, screening should take place as part of a prior demobilization process (see IDDRS 4.20 on Demobilization). If evidence emerges to suggest that a particular recipient of individually targeted reintegration support has committed serious violations of human rights and/or serious crimes, including a terrorist offence, legal advice shall be sought for possible referral to competent entities for further investigation and potential prosecution. In accordance with national laws and international obligations, judicial entities may determine applicable sanctions, including exclusion from the reintegration programme, loss of certain access to assistance and/or participation in truth-seeking and reparation programmes. For more information on screening, refer to IDDRS 2.11 The Legal Framework for DDR and IDDRS 6.20 on DDR and Transitional Justice. 8.4.2 Public information and community sensitization Reintegration programmes should include a long-term public information campaign to keep communities and former members of armed forces and groups appraised of the reintegration strategy, approach, timetable and resources available. Communication strategies should also integrate broader reconciliation and peacebuilding messages, as well as both support non-violent and gender equitable identities (see IDDRS 4.60 on Public Information and Strategic Communication as well as 5.10 on Women, Gender and DDR). Public information and communication strategies and policies shall be drawn up and implemented as early as possible. For more information on how to plan, design and implement public information campaigns, see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. 8.4.3 Capacity development Reintegration programmes shall include steps to develop the capacity of national institutions, line ministries, training institutions and service providers through training in institutional development, financial management, and other technical and material assistance. This will help to ensure that the reintegration programme can be nationally owned and led, once external assistance has come to an end. Support should also be given to communities to (re)establish local forums and consultative committees that form the basis of decision-making processes that define and shape the focus of local reintegration support, and provide community oversight and ownership. Capacity building should not be limited to training and other avenues, such as on-the-job training, should be explored. 8.4.4 Programme exit strategy The reintegration of former members of armed forces and groups is inherently linked to long-term recovery and development processes. Therefore, externally-supported reintegration programmes should be transferred to and sustained by national institutions. To ensure that this transition runs smoothly, DDR practitioners responsible for the management of reintegration programmes shall outline a sustainability and exit strategy during initial planning, focusing on the transition between reintegration support and violence prevention, wider recovery efforts, peacebuilding, institution building and development processes. 8.4.5 Monitoring and evaluation Monitoring and evaluation for reintegration programmes has often been conducted within programme silos. As a result, it is difficult to systematically compare what happens within a reintegration programme with related programmes, including broader humanitarian, peace and development initiatives. An integrated approach to developing metrics should be considered and consolidated into higher level collectively defined reintegration outcomes. A standardized framework of core reintegration metrics can help to produce a much larger evidence base, and enhance opportunities for collective learning that feed directly into short iterative planning cycles and contribute to ongoing outcome and impact monitoring. Core reintegration metrics should capture the perspectives of the recipients of reintegration (and other related) support. For further information, see IDDRS 3.50 on Monitoring and Evaluation. 8.4.6 Resource mobilization The scope, commencement and timeframe of reintegration programmes are subject to funding availability. Implementation can be delayed as a result of the late mobilization or disbursement of funds. Resolution A/C.5/59/L.53 of the Fifth Committee of the UN General Assembly formally endorsed the financing of staffing and operational costs for disarmament and demobilization (including reinsertion activities), which allows the use of the assessed budget for DDR during peacekeeping activities. However, funding for reintegration programmes must still be mobilized from voluntary contributions. Due to the challenges faced when mobilizing resources, it is essential that funding arrangements remain flexible. For example, when DDR programmes are in place, past experience shows that a strict separation of funds for different programme components (i.e., for reintegration support only) reinforces an artificial separation between the different phases of DDR. Cooperation with interventions run by bilateral donors may help to fill this gap. Finally, ensuring that budgets are gender-sensitive is an important accountability tool for the UN system internally, as well as for the host country and population. For further information on funding and resource mobilization, see IDDRS 3.41 on Budgeting DDR. 9. Reintegration components Reintegration support should not only focus on job creation, but should focus on the many different ways through which individual and community resilience can be strengthened. Experience at the international level shows that programmes delivered in an integrated manner and as a package combining job search assistance, active labour market support, as well as social and/or political assistance are more likely to be successful. 9.1 Economic reintegration Employment can contribute to peace by increasing social contact between different groups, by increasing the opportunity costs of engaging in violence, and by addressing the grievances that often arise from precarious work in exploitative conditions. Ex-combatants in many contexts have also consistently identified an alternative livelihood and the ability to generate income as key factors in their successful reintegration. Many have also indicated that being able to provide for their family is particularly important in establishing their sense of identity, the level of respect they receive in communities, and to ensuring self-esteem. Armed conflict often has severe implications for the availability of paid employment and the quality of jobs available. Armed conflict and persistent insecurity discourage foreign and domestic private investments in productive sectors that provide jobs and livelihoods, divert public investments towards the security sector and destroy public and private physical capital, including infrastructure and assets. Armed conflict also often increases mortality and disability rates, while depressing the overall skill level of the workforce, in particular for the most vulnerable segments of the population. Armed conflict can also increase informal, non-contractual and unregistered work, particularly for youth and decrease social protections for workers. Illicit economies \u2013 built around continued armed conflict \u2013 may also thrive (see IDDRS 6.20 on DDR and Organized Crime). Even in post-conflict contexts, or pockets of peace in war torn countries, the economy may still be too weak to absorb former members of armed forces and groups. Understanding the effects of the war economy on labour markets, private security and public sector activities is essential for successful support to economic reintegration. DDR practitioners should recognize that providing vocational training alone will not help former members of armed forces and groups to gain employment if the provision of training programmes is not a result of a thorough and in-depth assessment of the market and if they are not linked to broader programmes to generate employment, including private sector development. Training programmes should also reinforce former combatants\u2019 understanding of workers\u2019 rights and responsibilities to increase their employability and absorption in the workforce. Economic reintegration support should therefore be part of a broader approach including three tracks. The first track may begin with the definition by local and/or national authorities of long-term development objectives to be pursued. This would inform targeted support to be provided to former members of armed forces and groups as well as receiving communities. This may, for example, include reinsertion assistance in the form of income generating activities, public works programmes, cash-based transfers and/or in-kind support, which is focused on consolidating security and stability and rebuilding social and economic infrastructure in line with the defined long-term development objectives. This can be complemented with a second track, in which reintegration support is provided building on interventions of the first track to rebuild local communities through initiatives such as investing in local infrastructure, promoting local-level employment opportunities, and rebuilding local government capacity. This is critical and requires that an enabling environment for employment creation should be actively promoted as part of reintegration programming. The third track moves beyond the remit of DDR practitioners, and aims to consolidate previous gains in order to achieve the defined long-term development objectives by supporting the creation of sustainable \u2018decent\u2019 work, through the development/revision of macro-economic and sector policies, institutional capacity building and the creation of a framework for social dialogue. Once the long-term development objectives are defined, interventions in each of these tracks could be initiated simultaneously. Research has also shown that there are positive shifts in household income usage when involving household members in economic decision-making. Frequency of communication between spouse and former armed force/group member regarding choice of reinsertion and reintegration assistance positively correlates with more successful economic reintegration. Therefore, DDR practitioners should consider how to involve families in household decision making in order to maximize the economic conditions of the household. 9.1.1 Employability of former members of armed forces and groups Many ex-combatants and persons formerly associated with armed forces and groups may have not had the opportunity to receive an education or to develop employable skills, particularly if they joined an armed force or group at an early age. To improve their employment prospects, the options below may be considered. Specific guidance on children and youth is not provided here but may be found in IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR. Education Time spent with armed forces and groups results in a loss of educational opportunities. This in turn can create barriers to reintegrating economically. To address these gaps, DDR practitioners should consider adult education programmes as part of reintegration support. Providing adult education alongside other forms of support (such as vocational training and life skills) often provides former members of armed forces and groups with a better and broader basis for finding long-term employment. Life skills DDR practitioners should include the development of life skills within reintegration support. These types of skills are critical for employability but also for other aspects of social and political reintegration (see sections 9.2 and 9.3). Examples of the types of life skills that could be developed are: self-value and self-respect, self-awareness and self-management, interpersonal skills, social and emotional intelligence, critical thinking, problem solving and decision making, adaptability and flexibility, resilience, civic education, non-violent coexistence, negotiation, and basic financial management. Vocational training Vocational training can play a key role in the successful reintegration of ex-combatants and persons associated with armed forces and groups by increasing their chances of effectively participating in the labour market. Most armed conflicts result in the disruption of training systems and, because of time spent in armed forces or groups, many ex-combatants and persons associated with armed forces and groups do not acquire the skills that lead to a job. At the same time, the reconstruction and recovery of a conflict-affected country requires large numbers of skilled persons. Training provision needs to reflect the balance between demand and supply, as well as the aspirations of the participants and beneficiaries of the reintegration programme. It should therefore draw on previously conducted economic and labour market opportunity mapping (see section 7.1.2) and, if applicable, the profiling exercises conducted during prior demobilization (see IDDRS 4.20 on Demobilization). Economic sectors, which can absorb labour, should be exploited, while DDR practitioners should avoid training too many individuals for one particular sector, making it impossible for the local market to absorb. DDR practitioners should develop strong networks with the local business community in their areas of operation as early as possible to engage them as key stakeholders in the reintegration process and to enhance employment options post-training. This could include the development of apprenticeship programmes (see below), entering into Memorandum of Understanding\u2019s (MOU) with local chambers of commerce or orientation events bringing together key business leaders, local authorities, service providers and reintegration programme participants and beneficiaries. Employers\u2019 organizations are an important partner, as they may identify growth sectors in the economy, and provide assistance and advice to vocational training agencies. They can also help to identify a list of national core competencies or curricula and create a system for national recognition of these competencies/curricula. Employers\u2019 organizations can also encourage their members to offer on-the-job training to former members of armed forces and groups by explaining the benefits to their businesses such as increased productivity and competitiveness, and reduced job turn-over and recruitment expenses. Systematic data on the labour market and on the quantitative and qualitative capacities of training partners may be unavailable in conflict-affected countries. Engagement with the business community and service providers at the national, sub-national and local levels is therefore vital to fill these knowledge gaps in real-time, and to sensitize these actors on the challenges faced by ex-combatants and persons formerly associated with armed forces and groups. DDR practitioners should also explore opportunities to collaborate with national and local authorities, other UN agencies/programmes and any other relevant/appropriate actors to promote the restoration of training facilities and institutions and the capacity building of trainers. If former members of armed forces and groups have little or no experience of decent employment, vocational training should include a broad range of training options so as to provide individuals with choice and control over decision-making that affects their lives. Specifically, consideration should be given to the type of training that females would prefer, rather than the inclusion of training for traditional female roles in work (e.g. secretarial, beauty therapy, hairdressing, tailoring, etc.). The level of training should also match the need of the local economy to ensure greater probability of employment, while training modalities should be developed to most appropriately reflect the learning needs of individuals who may have been deprived of much of their schooling. As former members of armed forces and groups may be experiencing trauma, psychosocial support should be available during vocational training to those who need it. Vocational training modalities \u2013 such as part-time or evening classes - should also be considered to cater to those with dependants (particularly young women with children). Individuals require learning strategies that allow them to learn at their own pace. Learning approaches should be interactive and utilize appropriate new technologies. This may include digital resources and eLearning, as well as mobile skills-building facilities. The role of the trainer involved in these programmes should be that of a facilitator who encourages active learning, supports teamwork and provides a positive adult \u2018role model.\u2019 Traditional supply-driven and instructor-oriented training methods should be avoided. Where possible, and in order to prepare individuals with limited or no previous work experience for the highly competitive labour market, vocational training should be paired with apprenticeship and/or \u2018on-the-job\u2019 training opportunities. Trainees can then combine the skills they are learning with practical experience of norms and values, productivity and competition in the world of work. In instances where the labour market has very limited absorptive capacity, vocational training should be accompanied by the provision of access to micro-finance and start-up grants or tools to facilitate micro business and self-employment activities (see below). Ex-combatants and persons formerly associated with armed forces and groups can experience further frustration and hopelessness if they do not find a job after having been involved in an ineffective or poorly targeted training programme. These feelings can make re-recruitment more likely. One of the clearest lessons learned from past DDR processes is that even after training, former combatants struggle to succeed in economies that have been damaged by war. Businesses owned by former combatants regularly fail because of intense competition with highly qualified people already running the same kinds of businesses, limited experience in business start-up, management and development, and because of the very limited cash available to pay for goods and services in post-war societies. To address these issues, reintegration programmes should more effectively empower their participants by combining several skills in one course, e.g., driving can be combined with basic car repair skills; and home economics with tailoring, pastry or soap-making. This is because the possession of a range of skills greatly improves employability. Also, providing easy-to-learn skills such as mobile phone repair makes individuals less vulnerable and more adaptable to rapidly changing market demands. Together the acquisition of business skills and life skills (see above) can help individuals to become more effective in the market. Training ex-combatants and persons formerly associated with armed forces and groups in areas they might identify as their preference should be avoided if the jobs they choose are not required in the labour market. Training and apprenticeship programmes should be adapted to people\u2019s abilities, interests and needs, to enable them to complete the programme, which will both boost their employment prospects and bolster their self-confidence. Where possible, vocational training should be accompanied by high quality employment counselling, career guidance and labour market information. Apprenticeships Apprenticeships are a form of on-the-job training where employers agree by contract to train individuals (apprentices) in a particular trade for a fixed period of time. A reintegration programme can subsidize such learning and training opportunities by paying the trainees an allowance and/or incentivizing employers with up-skilling courses or other subsidized services to take on apprentices for a defined period. Apprenticeships should be carried out according to local traditions and norms regarding access, cost-sharing arrangements, duration and conditions for graduation, when appropriate. Skill assessment and certification mechanisms should be established to provide legitimacy to those with existing skills (including recognition of prior learning \u2013 RPL) as well as those acquiring new skills. Such certification is useful for potential future employers and consumers as a form of verification and confidence for employment. For trades with no apprenticeship system in place, other forms of on-the-job-training should be considered. In addition, since funding may not be sufficient within a reintegration programme to cover all training during apprenticeships, linkages to microfinance programmes should be established. Micro and small business training and start-ups Reintegration programmes should use existing employment opportunities wherever possible, as the risk of failure is lower than if ex-combatants and persons formerly associated with armed forces and groups try to start new microenterprises. However, if the labour market has weak absorptive capacity, many reintegration programme participants will need to rely on the informal economy for employment. Therefore, a strong focus on self-employment through business training support will offer those with entrepreneurial drive an effective means to succeed independently. While the recovery and expansion of the private sector should be encouraged (see below), it may be necessary to focus on creating new micro-enterprises. If micro-finance institutions and mechanisms are already locally available, the reintegration programme should establish partnerships with them to ensure accessibility for programme participants. Consistent follow-up of such programmes is important, as many programme participants may need coaching and mentoring. The success of micro-finance projects involves a certain level of business skills training, for which provisions must be made for participants to attend (i.e. subsidies for food, transportation, childcare, etc.). Such assistance should culminate in a business plan. In situations of low literacy or illiteracy, a programme must begin with literacy training or must develop low literacy tools such as pictograms for accounting, stock management, market analysis, how to access micro-credit and other business functions. Business skills training may be complemented by social education on a range of context-appropriate topics, including reproductive health, HIV, peacebuilding, conflict resolution, problem solving and decision making, gender equality, and general sessions that work to build self-esteem and self-confidence. Reintegration programmes should also ensure that different kinds of small businesses are started to avoid distorting the balance of supply and demand in local markets. In addition, these businesses should be based on market surveys that identify the businesses and services needed in a particular area. It is also important to ensure that the same businesses do not get support from multiple international organizations. Finally, linkage arrangements between micro-enterprises as suppliers to small, medium and larger scale firms, should be sought out. If the main approach towards funding the creation of micro-enterprises is micro-grants, they should be provided to ex-combatants and persons formerly associated with armed forces and groups only after they have drawn up a clear start-up business plan and should be paid in instalments with diligent follow-up. Reintegration programmes should ensure that relevant service providers are in place to advise the new entrepreneurs on financial management, for example through an ICRS (see section 6.3.4). Instalments may be given in kind (equipment, supplies, training, etc.), avoiding large cash payments, which are difficult to monitor effectively. But this should be balanced against the disadvantages of complicated and time-consuming procurement processes. Training and technical assistance services are also essential to the success of start-ups, together with direct, on-the-ground supervision and monitoring. Where possible, it is important that reintegration programmes gradually shift from small grants to credit access. This shift is needed so as not to create dependencies on grant schemes and to support entrepreneurship and market systems development. Involving female family members \u2013 such as wives of ex-combatants \u2013 in economic activities and access to credit may further help create successful outcomes. 9.1.2 Creation of an enabling environment for employment Income generating activities A national enabling environment for job creation and decent work is essential. Enabling policies and programmes should be initiated early and supported by DDR practitioners engaged in the planning of reintegration support. The following are key factors for creating an enabling environment for employment at the policy level: Strongly considering policy choices that ensure that infrastructure production and maintenance rely on local labour, local technical capacity and local materials to the greatest extent possible. Supporting national policies for labour-intensive work that are especially suitable for employing large numbers of ex-combatants and persons formerly associated with armed forces and groups. Reviewing and supporting national policies and legislation to create an enabling environment for the private sector and small and medium enterprise (SME) development in rural and urban areas. This should include incentives for local companies to hire high-risk groups. Recognizing potential limitations within the conflict and post-conflict context when supporting particular national policies. Identifying priority economic sectors with the potential for rapid expansion and job creation. Private sector employment Building partnerships with the private sector is important to create opportunities to absorb those receiving reintegration support into the labour market. Job referral and training provided as part of the reintegration programme may be dependent on the private sector and existing business ventures. Partnership with the private sector can also help to increase the sustainability of reintegration support, for example by linking newly created small businesses into the value-chain of established companies. In some instances, private sector entities may be reluctant to engage with former members of armed forces and groups. To counteract this, the following options can be considered to encourage private sector engagement in reintegration programmes: Create incentives for private companies and employers\u2019 associations to facilitate the development of micro and small-scale vendor industries that provide services. This could create jobs for former members of armed forces and groups as well as community members. Consider options whereby private sector actors are provided with incentives in primary and secondary infrastructure contracts, on the condition that they are contractually obliged to hire a fixed number of workers from target groups (i.e., ex-combatants, persons formerly associated with armed forces and groups, etc.). Stimulate public-private partnerships in areas most suitable to community-based reintegration (infrastructure, basic services). Reintegration programmes can seek to facilitate the linkages that make these partnerships possible. Reintegration programmes should aim to place qualified ex-combatants and those previously associated with armed forces and groups in existing businesses. However, this may be difficult since business owners may not be willing (due to negative perceptions of former members of armed forces and groups) or able (due to stark economic realities) to employ them. To be sustainable, DDR practitioners should support governments and development partners to strengthen labour market institutions such as public employment services in collaboration with other providers to develop and implement integrated active labour market programmes. Programmes could include hiring, wage, training and equipment subsidies. These subsidies should be: Targeted at the most vulnerable ex-combatants and persons formerly associated with armed forces and groups and designed to meet their needs; Wage subsidies should be partial and last for a fixed period of time with incentives for employment retention; In-kind donations of equipment or training to allow for the expansion of existing businesses should be explored in exchange for the employment of reintegration programme participants and beneficiaries; Newly hired ex-combatants and those previously associated with armed forces and groups should not take the jobs of workers already employed; By combining wage subsidies with appropriate training, employers should be encouraged to use the subsidies to provide long-term employment for ex-combatants and those previously associated with armed forces and groups. In many conflict-affected societies, government agencies lack the capacity to support and deliver services to micro- and small enterprises. Various actors, including businesses, local NGOs with experience in economic projects, governmental institutions and community groups should therefore be encouraged and supported to provide business development services. Business development services incorporate a wide array of business services, both strategic and operational, and are designed to improve the performance of individual small enterprises, their access to markets and their ability to compete. DDR practitioners engaged in reintegration should also support Governments to create legal frameworks that ensure that fundamental principles and rights at work (labour rights) are respected and that vulnerable groups are not exploited within the private sector. Concessions and contracts created between the private sector and the national, regional or local government must be transparent and conducted in such a way that affected communities are able to make their voices heard. In instances where livelihoods and recovery depend on the extraction of natural resources, it is especially important to be sure that the terms of the contracts are fair to communities and local peoples, and that private companies are contractually obliged to consider human security and local economic development. Access to information, technology and capital Reintegration programmes may promote the use of (and access to) appropriate technologies - such as cellular phones, SMS market information services and radios - to access information about commodity market changes, changes in the supply or demand for goods including the daily price fluctuation, shifting weather patterns, agricultural good practices, fluctuations in food prices and other relevant information. Efforts should be made to link with NGOs, UN agencies, or private sector actors who can support such access to technology and information. In addition to technology and information, access to capital is also essential to build value chains for products derived from the agricultural or other rural livelihood sectors, to diversify such sectors and to ensure the sustainability of the activities in question in terms of use of natural and other resources. Capital used to provide essential equipment to scale-up processing, manufacturing and marketing of goods derived from agricultural products or other natural resources should be sought through networks and other implementing partners working with the reintegration programme and in the early recovery context. This capital should be supplied along with proper training programmes and business education skills. Land tenure Property rights, land tenure and access to land are important to economic reintegration in both rural and urban contexts. Land distribution, for example, can inform reintegration programmes of potential tensions and grievances that may (re-)emerge and lead to further disputes or conflicts. While reintegration programmes cannot produce land reform mechanisms, they can incorporate awareness of the linkages between land and livelihoods. Land becomes an asset when it is coupled with access to agricultural tools and inputs, technology, and information regarding markets and services. Access to land and security of land tenure are also essential to the development of land as an asset. Access to land cannot be granted and legitimized without capacity for land management at the local and national government levels. Most reintegration programmes are likely to face a myriad of land tenure systems and legal procedures involving traditional, indigenous, religious, colonial or other legacies. Armed conflict also impacts land tenure security and access to land, including through violence, land grabbing, forced displacement, destruction of land records, etc. DDR practitioners engaged in reintegration programming should seek to understand how rights have been affected by the conflict and explore how reintegration programmes can assist in enhancing land tenure security, including by supporting support the mediation of housing and land disputes at the local level whenever possible, through support to legal aid groups or other appropriate service providers. Such mechanisms can transform potential conflict scenarios into recovery and reconciliation opportunities by addressing root causes of conflict (e.g. through involving both ex-combatants and community members in finding solutions through mediation and arbitration that are rights-based, acceptable to all and in line with cultural norms). Support for legal aid in land disputes should be coordinated with relevant international and national actors. Special attention should be paid to access to land by women, widows, child-headed households, disabled individuals and other groups with specific needs. In many instances, women suffer discrimination when it comes to access to land. Reintegration programmes should aim to support women\u2019s access to land and tenure security to promote gender equality and women\u2019s human rights, but also because their productivity in the agricultural sector is important for increased food security. While it is important to encourage land management and tenure policies that are consistent with cultural norms, the reform of such administrative sectors also provides an opportunity to pave the way for women\u2019s rights in terms of property and land tenure. Reintegration programmes should seek to make land as profitable an asset as possible, by providing incentives for the sustainable use of natural resources, and helping to develop the capacity of local and national institutions to provide land and property rights. These efforts can be augmented by linking up with rule of law institutions wherever possible. In addition, land tenure security to protect those who depend on land for livelihoods should be addressed through other partners at the national and international level. 9.2 Social and psychosocial reintegration Former combatants and those formerly associated with armed forces and groups may face a number of personal challenges during their reintegration, including: separation from the social support networks that they relied on while members of an armed force or group; stigma and rejection by communities of return; psychosocial needs, including trauma-spectrum disorders; physical health issues, such as living with a disability or a chronic illness; losses or shifts in gender identities and norms. In addition to these issues, while individuals are members of armed forces and groups they may be socialized to the use of violence and develop internalized norms that condone violent activity. Violence may be carried from the battlefield to the home and the community, where it can take on new forms and expressions. While the majority of former members of armed forces and groups are male, and violence between these males is often more visible, female ex-combatants also appear to be more vulnerable to violent behaviour than other civilian women. If socialization to violence is not addressed, and alternative behaviours and norms are not adopted, former members of armed forces and groups can find it difficult to socially reintegrate into civilian life. Compounding these issues, former members of armed forces and groups may also find it difficult to renegotiate their societal and gender roles within both the public and private spheres. Male ex-combatants and persons formerly associated with armed forces and groups may return home to discover that women have taken on traditional male responsibilities in their absence, such as the role of the \u2018breadwinner\u2019 or \u2018protector\u2019, challenging men\u2019s place both at home and in the community. Equally female former members of armed forces and groups may return home only to find that they are expected to revert to traditional gender roles, despite the fact that they may have taken on different non-traditional gender roles during their time with their armed force or group. Non-binary individuals may be stuck between different gender norms unable to fully identify with the socially prescribed norms. If former members of armed forces or groups are unable to deal with these issues and associated feelings of frustration, anger or sadness, this may result in self-directed violence (suicide, drug and alcohol abuse), interpersonal violence (sexual and gender based violence, intimate partner violence, child abuse, rape and murder) or group violence against the community (such as burglary, rape, harassment, beatings and murder). Social exclusion and marginalization also often undermine economic reintegration, as former members of armed forces and groups may find it difficult to hold down a job or to participate in training programmes or apprenticeships. Experience has shown that social reintegration is not only as important as economic reintegration, but that it can also be a pre-condition and a catalyst for employment and economic security. Progress towards social reintegration can be tracked through qualitative tools such as focus groups or key informant interviews in communities. \tDDR practitioners should consider the following interventions in order to support social reintegration: 9.2.1 Reconciliation Reconciliation among all groups is perhaps the most fragile and significant process within a reintegration strategy, and is likely to involve transitional justice measures (see IDDRS 2.11 The Legal Framework for UN DDR and IDDRS 6.20 on DDR and Transitional Justice). Reconciliation is a complex notion that may be understood differently depending on the context. It is important to see reconciliation not only as an end goal, but also as a dynamic and often long-term and dynamic process. It cannot be declared or imposed but requires committed work involving all relevant stakeholders. It requires dealing with legacies of past human rights violations (transitional justice), but also building trust and shared visions for the future, personal security, positive relationships, breaking down of cultures of fear and suspicion, and a transformation of the structural conditions that gave rise to conflict in the first place. Therefore, those involved in reintegration programmes should explore communities\u2019 needs and expectations with respect to reconciliation and seek to identify \u2013 always in consultation with communities and all relevant stakeholders \u2013 entry points for the reintegration process to contribute to broader reconciliation. This should be undertaken in partnership and coordination with other recovery, peacebuilding and reparation initiatives, in particular transitional justice programmes. This may include reflection on how cultural traditions and indigenous practices may play a role in reconciliation processes. However, it is critical to ensure the victim-centredness of such initiatives and avoid processes and ceremonies that retraumatize or stigmatize victims, or that pressure them into \u201cforgiveness\u201d or accepting terms they are not comfortable with (e.g., by staging public encounters between victims and perpetrators). All reconciliation initiatives should be fully human rights-compliant and ensure that the dignity and safety of victims are respected, especially when dealing with survivors of sexual and gender-based violence. In addition to focused \u2018reconciliation activities\u2019, reintegration programmes should aim to mainstream and encourage reconciliation in all programmatic components. To achieve this, these programmes should promote meaningful community participation and seek to benefit the community as a whole, including other conflict-affected groups (see section 6.3 on community-based reintegration support). Working together in mixed groups of returning combatants, IDPs, refugees, and community members, especially on economically productive activities, such as agricultural cooperatives, group micro-credit schemes, and labour-intensive community infrastructure rehabilitation, can transform negative stereotypes, promote peaceful coexistence and build trust. Strengthening social capital and social acceptance Social capital is a term that points to human relationships as a resource or form of capital just as valuable as human and monetary capital. If community members have shared norms and values this facilitates the development of trust between different individuals and enables collaborative action and community reconciliation. During armed conflict, social capital often breaks down as members of armed forces and groups join a new social unit and communities are polarized. Conflict-affected communities are often left with low levels of trust and damaged social capital. Former members of armed forces and groups may also lose their military support networks at the same time that they encounter rejection from communities. Without the development of new and pre-existing social capital, former members of armed forces and groups may be less likely to secure sustainable livelihoods. DDR practitioners should seek to foster social capital through life skills training and activities that may contribute to reconciliation (see sections 9.1.1 and 9.2.1). Community development projects that employ former members of armed forces and groups, and engage a wide range of community members in decision making can also help to rebuild trust and contribute to reconciliation. Public information and sensitization campaigns can also be used to build social capital and social acceptance by ensuring that stakeholders are aware that reintegration programmes are not designed to reward former members of armed forces and groups, but to allow them to become valuable members of the community. 9.2.3 Social support networks Social support networks are key to the adjustment of ex-combatants and persons formerly associated with armed forces and groups to civilian life. Having persons to turn to who share one\u2019s background and experiences in times of need and uncertainty is a common feature of many successful adjustment programmes, ranging from culturally appropriate version of Narcotics or Alcoholics Anonymous (N/AA) to widows support groups. Socially-constructive support networks, such as peer groups, men\u2019s and women\u2019s groups, in addition to groups formed during vocational and life skills training, should be encouraged and supported with information, training and guidance, where possible and appropriate. Families should also be supported, as part of reintegration programmes, to adjust to the return of relatives who are former members of armed forces and groups. Ex-combatant associations When associations have mixed memberships \u2013 consisting of former members of armed forces and groups and community members \u2013 they can contribute to the development of social capital and social reintegration. Associations often provide their members with a way to cope with vulnerability and unexpected shocks. For example, if members pay monthly dues these can be used to cover expenses that association members are unable to meet such as medical fees, funeral expenses or school tuition. Associations can be used to facilitate economic reintegration if association members are able to access micro-credit (see section 9.1.1), or if association members pool resources. While keeping ex-combatants together may run the risk that these individuals can be remobilized, remobilization depends on more than mere togetherness. A variety of additional factors are important such as the character of the armed force or group, the political context and the role of elites who may serve as recruiters. The risk of remobilization will need to be carefully analyzed against the opportunities that maintaining networks of former members of armed forces and groups present in terms of social, political and economic reintegration. 9.2.4 Psychosocial services If former members of armed forces and groups have psychological needs (such as post-traumatic stress, anxiety and/or depression), this may hinder their ability to establish and sustain social relationships to contribute to income generation and more broadly, to reintegrate into civilian life. Individuals who show outward signs of psychiatric distress, such as aggression or irritation, may face stigmatization from community members that may hinder their reintegration. DDR practitioners engaged in the provision of reintegration support shall therefore consider psychosocial support as a way to reduce suffering and allow former members of armed forces and groups to become proactive and full civilian members of society. Psychosocial care provided as part of a reintegration programme should be coordinated and harmonized between different providers, such as Universities, NGOs, religious based initiatives and public health structures. Careful consideration should also be given to how such support can be made more available to victims and community members more broadly, including to avoid resentment. As a first step, DDR practitioners shall assess the capacity of existing support providers and identify gaps. Simultaneously DDR practitioners shall also undertake an assessment to better understand local cultural and religious traditions and resources to addressing traumatic experiences and mental health needs. Working in consultation with national and local experts on mental health and trauma recovery services, reintegration program shall develop a referral system for DDR participants to existing service networks, and work to strengthen those programmes to promote longer term sustainability. Where those services do not exist in the country, or are weak, it may be necessary to develop a referral system, building on other medical referral systems, to serve communities and DDR participants. A variety of trauma resolution approaches have been proven effective in the treatment of psychological stress related to trauma, including mental health literacy or psychosocial education on the nervous system and dysregulation due to acute stress, combined with somatic-based approaches to learn to identify and successfully work with triggers and promote nervous system health, and talk therapy-based approaches (including narrative exposure therapy, eye movement densitization, have been proven effective in the treatment of traumatic practices. Counselling services should be open and accessible to all trauma-affected members of society, including children, adults, youth, victims, perpetrators, civilians and former members of armed forces and groups. They must also be culturally acceptable (i.e., there must be a culturally acceptable age and gender match between those providing and receiving support). Interventions should be scientifically-based and follow IASC Guidelines on mental health and psychosocial support (MHPSS). Impact evaluation should also be conducted in order to develop evidence-based best practice models, to assess the recovery of selected individuals pre- and post-treatment and, among other indicators, to assess the recovery of occupational functioning and the impact of psychosocial support on social cohesion in the community. Parallel to these evaluations, a measure of supervision (by master counsellors or clinical practitioners) and peer sharing should be established between community, district practitioners and researchers at the national level. Where appropriate, if local capacity is limited, local staff may be trained in standardized diagnostic procedures, such as screening with close consultation with mental health providers, and manualized, evidence-based interventions, such as Narrative Exposure Therapy (NET) in combination with Interpersonal Therapy (IPT). NET in particular has been shown to be particularly effective in addressing trauma-related psychological stress in both conflict and post-conflict settings. It can also be taught to non-medical, lay personnel with various cultural backgrounds. If mental health professionals from existing health structures are available, they should also be trained (if necessary) and involved in a referral structure. Sensitization and public awareness programmes on mental health and related psychosocial issues should be developed and informed by the work of local staff. These programmes should sensitize the community to the symptoms experienced by those who suffer from mental illness and impairment of associated functioning. This will involve strong efforts to destigmatize the conditions faced by psychologically-affected individuals (see Module 4.60 on Public Information and Sensitization). These programmes should also provide information on access to care. In some countries, psychological suffering is explained and treated using traditional methods. If individuals have participated in traditional rituals to be equipped with special combat powers, it may be important for them to be cleansed of these powers once they have left their armed force or group. Some psychologists and psychiatrists recommend including traditional rituals or cooperating with traditional healers in psychosocial projects. What has been established in the scientific literature is that traditional rituals cannot be considered sufficient treatment, especially for those individuals with severe mental health issues. Severely psychologically-affected former members of armed forces and groups should be identified as early as possible through a screening process conducted by trained local staff. When reintegration support is preceded by formal demobilization, this type of screening shall take place during demobilization (see section 6.4 in IDDRS 4.20 on Demobilization). For further information on these issues, see IDDRS 5.70 on Health and DDR. 9.2.5 Medical and physical health issues Former members of armed forces and groups are likely to suffer a range of health problems that can affect both their own reintegration prospects and receiving communities. Immediate health care assistance shall be provided as soon as individuals join a DDR process and continued throughout the reintegration programme (see IDDRS 5.70 on Health and DDR). The reintegration programme should ensure that ex-combatants and persons formerly associated with armed forces and groups are not a distinct target group for medical assistance, but receive care along with members of their communities of return. Linkages should be made to private and public national and/or community health care facilities. Support should also be given to the main caregivers in receiving communities. HIV/AIDS The conditions that exist during violent conflict increase the risk of infection for HIV and other sexually transmitted infections and can have a devastating impact on access to information, care and treatment (see IDDRS 5.60 on HIV/AIDS and DDR). In addition, a growing body of evidence shows that the immediate post-conflict context, in which reintegration may take place, may increase the risk of transmission due to the reopening of borders and other formerly inaccessible areas, increased mobility and the return of displaced populations. Receiving communities may perceive ex-combatants and persons formerly associated with armed forces and groups as HIV-positive and react with discrimination or stigmatization. In many cases, these negative reactions stem from fear created by misinformation about HIV and AIDS. Discrimination against or stigmatization of (potentially) HIV-infected individuals should be countered with appropriate sensitization campaigns during the reintegration programme. HIV initiatives should start in receiving communities before reintegration begins, and should be linked wherever possible with broader recovery and humanitarian assistance provided at the community level, and to National AIDS Control Programmes. They should seek to build awareness, focus on health seeking behaviour, and ensure community access to sexual health services. In instances where formal demobilization or other DDR-related tools precede reintegration, peer education and training and awareness can begin. With the right engagement and training, ex-combatants and persons formerly associated with armed forces and groups have the potential to become agents of change by assisting their communities with HIV prevention and awareness activities. Persons with disabilities War leaves behind large numbers of injured people. Former members of armed forces and groups with disabilities shall be included in reintegration programmes and treated equally to other reintegration participants and beneficiaries. DDR practitioners shall ensure that barriers to the inclusion of disabled individuals in all aspects of reintegration support be addressed, including by ensuring that those providing care to disabled individuals are provided with access to reintegration support. For further information on reintegration support and disability, see IDDRS 5.80 on Disability-Inclusive DDR. It is important to take into consideration the ways in which gender dynamics in the community and home intersect with disabilities, including women and girls often have the added burden of caring for persons with disabilities, and both men and women face unique challenges vis a vis how their gender identities are affected by their disabilities. Reproductive health The provision of reproductive health services, including maternal health and the engagement of fathers and STI prevention and response programmes, should begin as early as possible in the DDR process and be continued throughout reintegration. The intersectionality of gender identities, health seeking behavior, violence and sexuality, etc. shall be considered in the design and delivery of programme support and awareness raising campaigns. Peer education campaigns can combine elements of HIV/AIDS care and prevention, reproductive health, gender identities and norms, and sexual violence prevention, using a strong platform to engage both male and female DDR participants and those with other gender identities, as well as community members and leaders in behavior change work. Planning for maternal health, including, that pregnant women who have been with armed forces and groups may not have seen a doctor during their pregnancy and therefore may require urgent referral to services and/or more regular access to care once returning to civilian life. Preferential or subsidized access to reproductive care may be required and should be considered by DDR practitioners. Sexual violence recovery services Sexual violence is often a tool of war utilized against women and girls, but can also be used against men and boys. Therefore, services should be culturally appropriate to ensure appropriate, confidential, and trauma-informed care is available to, and customized to the specific needs of, all genders. Access to sexual violence recovery services, including pep kits, sexual assault evidence collection kits, fistula repair, psychosocial support, and access to justice services, should be available to male, female, and non-binary individuals. Given female survivors may return to communities with children born out of wedlock or as a result of sexual violence, targeted culturally-appropriate, information and behavior change campaigns should be undertaken to mitigate potential stigma against them or their children. All ICRS providers should provide informational materials and counselling support to appropriately refer sexual violence survivors in a gender-responsive manner. Sexual violence prevention programmes should be included as part of any reintegration programme. Post-conflict, rises in sexual and gender-based violence, particularly intimate partner violence, is common. The socialization or conditioning to violence, combined with nervous system dysregulation, untreated trauma, negative coping mechanisms such as the use of drugs or alcohol, inability to attain social status according to one\u2019s gender identity or local customs, can all be drivers to increases in violent acts. Prevention programming should focus at the community level, engaging leaders and all members of society through public information and behavior change communication programmes, such as peer education, radio dramas, small group training or discussion groups, community events, etc. Targeted support for stress management and emotional regulation should also be provided in tandem with broader community support. Reintegration programmes should also provide social skill building, training, and other support to mitigate harmful gender identities and norms that may link violence with gender identity expressions. 9.2.6 Gender identities and norms Due to the intersectionality of gender identities and norms in all aspects of the reintegration process, reintegration support should include culturally appropriate training/discussion or other community mobilization activities on gender and work to actively shift harmful norms. Gender training should begin in demobilization with sensitization sessions, but should be addressed in more depth in reintegration support. Reintegration support should be based on gender-responsive assessments with community members and ex-combatants and associated groups. They should include programmatic and public information components which engage individuals and communities in discussion around cultural norms and gender identities, frustrations, or challenges in achieving those norms, the intersectionality with proclivity to use violence, violent or militarized gender identities, and linkages to sexual health, to enable broader dialogue. Peer education action-oriented groups, which provide training and sensitization can support deeper ownership and broader community reach. Public information campaigns and programme support should foster non-violent, healthy expressions of masculinities and femininities. This can be part of peer education programming around gender-based and sexual violence prevention, fatherhood and parenting campaigns, reproductive health, or other innovative programming. Good practice from implementing social reintegration programme components adapted from the development context for reintegration programmes) have demonstrated the importance of addressing these issues given their link to both sustainable peace and security, as well as the importance of adapting them to be culturally appropriate. 9.3 Political reintegration Political reintegration is the involvement and participation of ex-combatants and persons formerly associated with armed forces and groups in decision- and policy-making processes at the national, regional and community levels. It is important to differentiate between political reintegration and the political nature of reintegration processes. DDR as a whole is inherently political and is often part of a political strategy to induce armed forces and groups to exchange violence for dialogue and a negotiated peace agreement (see IDDRS 2.20 on The Politics of DDR). While political reintegration is related to this strategy, its goals are more specifically focused on engaging programme participants and beneficiaries in the political processes of their communities and countries at both the individual and group levels. Overarching political strategies and political reintegration may however be linked. For example, warring parties may push their members to run for political office, encourage integration into the security services so as to build a power base within these forces, or opt for cash reintegration assistance, some of which is used to support political activities. The notion of individual choice should therefore be encouraged so as to counter attempts to co-opt reintegration for political ends. 9.3.1 Group level political reintegration Aiding former armed groups to transform into political parties is essential to ensuring that grievances and visions for society continue to be expressed in a non-violent manner. While efforts to build political platforms, including political parties lie beyond the scope of DDR, DDR practitioners may develop partnerships with actors that are already engaged in this field. The latter could develop projects to assist armed group members who enter into politics in preparing for their new roles. The decision to seek such partnerships shall be based on a thorough analysis of the political context and of the armed group in question. This is because the elevation of some armed groups into political parties may only serve to entrench and legitimize groups that are corrupt, do not enjoy public support and undermine the political system over the long-term (see section 5 of IDDRS 2.20 on The Politics of DDR). 9.3.2 Individual level political reintegration Effective political reintegration at the individual level involves empowering citizens by providing them with the knowledge and tools to voice their opinions, vote and take part in governing their country without fear of intimidation, discrimination, retaliation or violence. To support individual level political reintegration, DDR practitioners may include the following activities within reintegration programmes: Public information and sensitization campaigns on civil and political rights: Former members of armed forces and groups and their communities of return should receive sensitization related to political reintegration and the accompanying peace process (if one exists). Restoring legal identity and access to social security benefits/allowances: Reintegration programmes should support access to social security benefits through access to identity cards, social security documents, and voter and property registration. Civic and voter education: This may include the provision of education (or referrals to educational opportunities) on the nature and functioning of democratic institutions at the national, regional and/or local levels. If a peace process is in place, civic education on this process should be considered. At the local level, human rights education on the practical application of rights, such as the right to participate in public affairs (by voting in free and fair elections but also outside of electoral processes) and the exercise of fundamental freedoms such as the rights to freedom of opinion and expression and to peaceful assembly (including the right to dissent and protest) may be particularly effective. Female ex-combatants and women formerly associated with armed forces and groups may face discrimination in regard to the exercise of their civil and political rights, combined with a socio-cultural environment that is not conducive to their engagement in public life and decision making. DDR practitioners should therefore pay specific attention to the needs of women, include an \u2018intersectionality\u2019 approach in assessments for political reintegration, and include gender in monitoring and evaluation for political reintegration (see IDDRS 5.10 on Women, Gender and DDR). The specific needs of youth, persons with disabilities and persons with chronic illnesses should also be addressed. DDR practitioners should closely coordinate reintegration programming with relevant line ministries and the principal UN entities involved in early and longer-term support to the restoration and strengthening of civil rights and governance. They should also coordinate and liaise with donors, multilateral organizations, NGOs, and other relevant organizations and civil society organizations dedicated to political party assistance and electoral support. If support to political reintegration is being provided within the context of a peacekeeping mission, then DDR practitioners should make use of the assets and capacities of this mission. DDR practitioners should also consider the involvement of specialized organizations, including advocacy groups, organizations for persons with disabilities and ex-combatant associations in the planning and brainstorming process for political reintegration programming. In particular, ex-combatant associations can serve as critical parts of civil society, articulating and advancing the political ideas of ex-combatants. The benefits and risks of working through ex-combatant associations should be evaluated on a case-by-case basis (see section 9.2.3). Annex 1: Sample survey questions for reintegration programme participants", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021.json b/static/data/json/IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021.json deleted file mode 100644 index 6a37073..0000000 --- a/static/data/json/IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021.json +++ /dev/null @@ -1,648 +0,0 @@ -[ - { - "ID": "6e709520-3664-4f5a-9fbe-e8c8decf16ba", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 1 1. Module, scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 1 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..................\u2026\u2026\u2026\u2026\u2026\u2026. 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 2 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.1 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026. 5 4.2 Unconditional release and protection of children \u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.3 Gender-responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 6 4.5 Context-specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 4.6 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 5. Objectives of PI/SC in support of DDR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 7 6. Planning and designing PI/SC strategies\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 9 6.1 Understanding the local context \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 10 6.2 Communicating about former members of armed forces and groups \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 11 6.3 The preparation of PI/SC material \u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026 12 6.4 Hate speech and developing counter-narratives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026.............. 12 6.5 Gender-sensitive PI/SC for DDR\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202613 6.6 Anti-stigma and mental health PI/SC in support of DDR \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 14 7. Stakeholders or target audiences \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 15 7.1 Primary audience (participants and beneficiaries) \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026................... 15 7.2 Secondary audience (partners) \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 16 8. Media \u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 17 8.1 Online and web presence \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 18 8.2 Radio: local, national and international stations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026............ 18 8.3 Print media \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.................. 18 8.4 Visual media: TV, film and billboards \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 18 8.5 Interactive forums: theatre, seminars, debate \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 19 8.6 Local townhall events \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 8.7 Hotlines \u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 8.8 Augmented and virtual reality \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 19 8.9 Gamification \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026 20 9. Monitoring and evaluation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 20 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 20 4.60 Public Information and Strategic Communication in Support of DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "6e5c4103-c23f-4f2c-bdd9-ee9e7ea7ae9e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "Summary Public information and strategic communication (PI/SC) are key support activities that are instrumental in the overall success of DDR processes. Public information is used to inform DDR participants, beneficiaries and other stakeholders of the process, while strategic communication influences attitudes towards DDR. If successful, PI/SC strategies will secure buy-in to the DDR process by outlining what DDR consists of and encouraging individuals to take part, as well as contribute to changing attitudes and behaviour. A DDR process should always be accompanied by a clearly articulated PI/SC strategy. As DDR does not occur in a vacuum, the design, dissemination and planning of PI/SC interventions should be an iterative process that occurs at all stages of the DDR process. PI/SC interventions should be continuously updated to be relevant to political and operational realities, including public sentiment about DDR and the wider international effort to which DDR contributes. It is crucial that DDR is framed and communicated carefully, taking into account the varying informational requirements of different stakeholders and the various grievances, perceptions, culture, biases and political perspectives of DDR participants, beneficiaries and communities. An effective PI/SC strategy should have clear overall objectives based on a careful assessment of the context in which DDR will take place. There are four principal objectives of PI/SC: (i) to inform by providing accurate information about the DDR process; (ii) to mitigate the potential negative impact of inaccurate and deceptive information that may hamper the success of DDR and wider peace efforts; (iii) to sensitize members of armed forces and groups to the DDR process; and (iv) to transform attitudes in communities in such a way that is conducive to DDR. PI/SC should make an important contribution towards creating a climate of peace and security, as well as promote gender-equitable norms and non-violent forms of masculinities. DDR practitioners should support their national counterparts (national Government and local authorities) to define these objectives so that activities related to PI/SC can be conducted while planning for the wider DDR process is ongoing. PI/SC as part of a DDR process should (i) be based on a sound analysis of the context, conflict and motivations of the many different groups at which these activities are directed; (ii) make use of the best and most trusted local methods of communication; and (iii) ensure that PI/SC materials and messages are pre-tested on a local audience and subsequently closely monitored and evaluated.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "36c05bf4-73c3-4ea2-afc9-d5d138de5407", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module aims to present the range of objectives, target groups and means of communication that DDR practitioners may choose from to formulate a PI/SC strategy in support of DDR, both at the field and headquarters levels. The module includes guidance, applicable to both mission and non-mission settings, on the planning, design, implementation and monitoring of a PI/SC strategy.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f6ebc616-148a-49f3-bf1a-f52e30283a50", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Public information seeks to provide relevant and factually accurate information to a specific audience. Strategic communication involves persuading an identified audience to adopt a desired behaviour. Disinformation: The deliberate dissemination of false information.\u00a0It is an act of deception to convince an audience of something. Disinformation is\u00a0intended\u00a0to mislead. Misinformation: Giving erroneous or incorrect information. It is false or inaccurate information that is spread unintentionally.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "82c96c7e-81e9-4c5e-a964-2b35b89ca09d", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 4, - "Paragraph": "3. Introduction DDR is a process that requires the involvement of multiple actors, including the Government or legitimate authority and other signatories to a peace agreement (if one is in place); combatants and persons associated with armed forces and groups, their dependants, receiving communities and youth at risk of recruitment; and other regional, national and international stakeholders. Attitudes towards the DDR process may vary within and between these groups. Potential spoilers, such as those left out of the peace agreement or former commanders, may wish to sabotage DDR, while others will be adamant that it takes place. These differing attitudes will be at least partly determined by individuals\u2019 levels of knowledge of the DDR and broader peace process, their personal expectations and their motivations. In order to bring the many different stakeholders in a conflict or post-conflict country (and region) together in support of DDR, it is essential to ensure that they are aware of how DDR is meant to take place and that they do not have false expectations about what it can mean for them. Changing and managing attitudes and behaviour \u2013 whether in support of or in opposition to DDR \u2013 through information dissemination and strategic communication are therefore essential parts of the planning, design and implementation of a DDR process. PI/SC plays an important catalytic function in the DDR process, and the conceptualization of and preparation for the PI/SC strategy should start in a timely manner, in parallel with planning for the DDR process. The basic rule for an effective PI/SC strategy is to have clear overall objectives. DDR practitioners should, in close collaboration with PI/SC experts, support their national and local counterparts to define these objectives. These national counterparts may include, but are not limited to, Government; civil society organizations; media partners; and other entities with experience in community sensitization, community engagement, public relations and media relations. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to enter the programme. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. DDR practitioners should keep in mind that PI/SC should be aimed at a much wider audience than those people who are directly involved in or affected by the DDR process within a particular context. PI/SC strategies can also play an essential role in building regional and international political support for DDR efforts and can help to mobilize resources for parts of the DDR process that are funded through voluntary donor contributions and are crucial for the success of reintegration programmes. PI/SC staff in both mission and non-mission settings should therefore be actively involved in the preparation, design and planning of any events in-country or elsewhere that can be used to highlight the objectives of the DDR process and raise awareness of DDR among relevant regional and international stakeholders. Additionally, PI can play an important role in encouraging a holistic view of the challenges of rebuilding a nation and can serve as a major tool in advocacy for gender equality and inclusiveness, which form part of DDR (also see IDDRS 2.10 on the UN Approach to DDR and IDDRS 5.10 on Women, Gender and DDR). The role of national authorities is also critical in public information. DDR must be nationally-led in order to build the foundation of long-term peace. Therefore, DDR practitioners should ensure that relevant messages are approved and transmitted by national authorities. Communication is rarely neutral. This means that DDR practitioners should consider how messages will be received as well as how they are to be delivered. Culture, custom, gender, and other contextual drivers shall form part of the PI/SC strategy design. Information, disinformation and misinformation are all hallmarks of the conflict settings in which DDR takes place. In times of crisis, information becomes a critical need for those affected, and individuals and communities can become vulnerable to misinformation and disinformation. Therefore, one objective of a DDR PI/SC strategy should be to provide information that can address this uncertainty and the fear, mistrust and possible violence that can arise from a lack of reliable information. Merely providing information to ex-combatants, persons formerly associated with armed forces and groups, dependants, victims, youth at risk of recruitment and conflict-affected communities will not in itself transform behaviour. It is therefore important to make a distinction between public information and strategic communication. Public information is reliable, accurate, objective and sincere. For example, if members of armed forces and groups are not provided with such information but, instead, with confusing, inaccurate and misleading information (or promises that cannot be fulfilled), then this will undermine their trust, willingness and ability to participate in DDR. Likewise, the information communicated to communities and other stakeholders about the DDR process must be factually correct. This information shall not, in any case, stigmatize or stereotype former members of armed forces and groups. Here it is particularly important to acknowledge that: (i) no ex-combatant or person formerly associated with an armed force or group should be assumed to have a natural inclination towards violence; (ii) studies have shown that most ex-combatants do not (want to) resort to violence once they have returned to their communities; but (iii) they have to live with preconceptions, distrust and fear of the local communities towards them, which further marginalizes them and makes their return to civilian life more difficult; and (iv) female ex-combatants and women associated with armed forces and groups (WAAFAG) and their children are often stigmatized, and may be survivors of conflict-related sexual violence and other grave rights violations. If public information relates to activities surrounding DDR, strategic communication, on the other hand, needs to be understood as activities that are undertaken in support of DDR objectives. Strategic communication explicitly involves persuading an identified audience to adopt a desired behaviour. In other words, whereas public information seeks to provide relevant and factually accurate information to a specific audience, strategic communication involves complex messaging that may evolve along with the DDR process and the broader strategic objectives of the national authorities or the UN. It is therefore important to systematically assess the impact of the communicated messages. In many cases, armed forces and groups themselves are engaged in similar activities based on their own objectives, perceptions and goals. Therefore, strategic communication is a means to provide alternative narratives in response to rumours and to debunk false information that may be circulating. In addition, strategic communication has the vital purpose of helping communities understand how the DDR process will involve them, for example, in programmes of community violence reduction (CVR) or in the reintegration of ex-combatants and persons formerly associated with armed forces and groups. Strategic communication can directly contribute to the promotion of both peacebuilding and social cohesion, increasing the prospects of peaceful coexistence between community members and returning former members of armed forces and groups. It can also provide alternative narratives about female returnees, mitigating stigma for women as well as the impact of the conflict on mental health for both DDR participants and beneficiaries in the community at large.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b1cd4177-8c7d-4eb5-874b-2b7a2cb4b35a", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to PI/SC strategies for DDR:", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "12959678-d4ed-4571-b451-e0e0bd633d58", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 6, - "Paragraph": "4.1 People centred DDR practitioners shall manage expectations concerning the DDR process by being clear, realistic, honest, communicative and consistent about what DDR can and cannot deliver. The PI/SC strategy shall focus on the national (and, where applicable, regional) stakeholders, participants and beneficiaries of the DDR process, i.e., ex-combatants, persons associated with armed forces and groups, dependants, receiving communities, parties to the peace agreement, civil society, local and national authorities, and the media.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6f0ac243-362b-49cf-a384-847797bfb9d1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.2 Unconditional release and protection of children Children associated with armed forces and groups and their caregivers shall be provided with child-friendly, age-appropriate and gender-sensitive information about DDR. Information should be provided to children on access to justice and reparation, and on their rights to be free from discrimination and to be safe and protected from violence and abuse. Children should also be informed of the services and support available to them, how to access this support and the procedures to access safe complaint mechanisms and judicial recourse. PI/SC strategies developed as part of a DDR process shall include provisions for disseminating messages on the rights of children and the consequences that armed forces and groups will face if engaging in child recruitment, including messages that dismantle stigma and ostracization by the child\u2019s family or home community (noting that stigma can be imposed disproportionately on girls). Communities, local authorities and police shall also be provided with information and training on how to assist children who have exited or been released from armed forces and groups and which protocols apply to ensure their protection and safe handover to child protection services. The personal information of children shall never be shared for the purposes of PI/SC, and all information gathered from children shall be treated according to the requirements of confidentiality.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "3ac29b52-9335-4d36-ba1b-b28640931667", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.3 Gender responsive and inclusive PI/SC messages shall take into consideration the needs and interests of women and girls, who play a central role in peacebuilding at the community level. Female ex-combatants and other WAAFAG must be informed about their eligibility for DDR and any special programmes for them, which may require specific strategies and approaches. PI/SC messages shall also encourage the participation of women and girls in the DDR process. DDR practitioners shall strive to ensure that key messages, communications material and information campaigns are gender responsive, taking into account the need for tailored messaging that addresses the specific needs of women, men, boys and girls. They shall also leverage opportunities to support gender-transformative norms and women\u2019s empowerment. Specific attention should be paid to developing gender-responsive information strategies that can play an important role in the reintegration and return of women by mitigating their stigmatization and contributing to community sensitization.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ab78f7f9-aee6-428e-992e-096ec7e07a00", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.4 Conflict sensitive DDR practitioners shall base any and all strategic communications interventions \u2013 for example, to combat misinformation and disinformation \u2013 on clear conflict analysis. Strategic communications have a direct impact on conflict dynamics and the perceptions of armed forces and groups, and shall therefore be carefully considered. \u2018Do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. No false promises shall be made through the PI/SC strategy.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6762e8e4-d702-41b5-be5b-73dfa4a1f067", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 7, - "Paragraph": "4.5 Context specific To increase the effectiveness of a PI/SC strategy, DDR practitioners shall consider cultural factors and levels of trust in different types of media. PI/SC strategies shall be responsive to new political, social and/or technological developments, as well as changes within the DDR process as it evolves. DDR practitioners shall also take into account the accessibility of the information provided. This includes considerations related to both the selection of media and choice of language. All communications methods shall be designed with an understanding of potential context-specific barriers, including, for example, the remoteness of combatants and persons associated with armed forces and groups. Messages should be tested before dissemination to ensure that they meet the above mentioned criteria.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bb640201-3e69-4e0f-9afc-4d232b11d609", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 8, - "Paragraph": "4.6 Nationally and locally owned DDR practitioners shall ensure that PI/SC strategies are nationally and locally owned. National authorities should lead the implementation of PI/SC strategies. National ownership ensures that DDR programmes, DDR-related tools and reintegration support are informed by an understanding of the local context, the dynamics of the conflict, and the dynamics between community members and former members of armed forces and groups. National ownership also ensures that PI/SC strategies are culturally and contextually relevant, especially with regard to the PI/SC messages and communication tools used. In both mission and non-mission contexts, UN practitioners should coordinate closely with, and provide support to, national actors as part of the larger national PI/SC strategy. When combined with UN support (e.g. technical, logistical), national ownership encourages national authorities to assume leadership in the overall transition process. Additionally, PI/SC capacities must be kept close to central decision-making processes, in order to be responsive to the perogatives of the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "27517442-2b38-4343-81b5-f4e3d5ba8fe1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 8, - "Paragraph": "5. Objectives of PI/SC in support of DDR A PI/SC strategy should outline what the DDR process in the specific context consists of through public information activities and contribute to changing attitudes and behaviour through strategic communication interventions. There are four overall objectives of PI/SC: 1. To inform stakeholders about the DDR process (public information): This includes providing tailored key messages to various stakeholders, such as where to go, when to deposit weapons, who is eligible for DDR and what reintegration options are available. The result is that DDR participants, beneficiaries and other stakeholders are made fully aware of what the DDR process involves. This kind of messaging also serves the purpose of making communities understand how the DDR process will involve them. Most importantly, it serves to manage expectations, clearly defining what falls within and outside the scope of DDR. If the DDR process is made up of different combinations of DDR programmes, DDR-related tools or reintegration support, messages should clearly define who is eligible for what. Given that, historically, women and girls have not always received the same information as male combatants, as they may be purposely hidden by male commanders or may have \u2018self-demobilized\u2019, it is essential that PI/SC strategies take into consideration the specific information channels required to reach them. It is important to note, however, that PI activities cannot compensate for a faulty DDR process, or on their own convince people that it is safe to participate. If combatants are not willing to disarm, for whatever reason, PI alone will not persuade them to do so. In such sitatutions, strategic communications may be used to create the conditions for a successful DDR process. 2. To mitigate the negative impact of misinformation and disinformation (strategic communication): It is important to understand how conflict actors such as armed groups and other stakeholders respond, react to and/or provide alternative messages that are disseminated in support of the DDR process. In the volatile conflict and post-conflict contexts in which DDR takes place, those who profit(ed) from war or who believe their political objectives have not been met may not wish to see the DDR process succeed. They may have access to radio stations from which they can make broadcasts or may distribute pamphlets and other materials spreading \u2018hate\u2019 or messages that incite violence and undermine the UN and/or some of the (former) warring parties. These spoilers likely will have access to online platforms, such as blogs and social media, where they can easily reach and influence a large number of people. It is therefore critical that PI/SC extends beyond merely providing information to the public. A comprehensive PI/SC strategy shall be designed to identify and address sources of misinformation and disinformation and to develop tailored strategic communication interventions. Implementation should be iterative, whereby messages are deployed to provide alternative narratives for specific misinformation or disinformation that may hamper the implementation of a DDR process. 3. To sensitize members of armed forces and groups to the DDR process (strategic communication): Strategic communication interventions can be used to sensitize potential DDR participants. That is, beyond informing stakeholders, beneficiaries and participants about the details of the DDR process and beyond mitigating the negative impacts of misinformation and disinformation, strategic communication can be used to influence the decisions of individuals who are considering leaving their armed force or group including providing the necessary information to leave safely. The transformative objective of strategic communication interventions should be context specific and based on a concrete understanding of the political aspects of the conflict, the grievances of members of armed forces and groups, and an analysis of the potential motivations of individuals to join/leave warring parties. Strategic communication interventions may include messages targeting active combatants to encourage their participation in the DDR process, for example, stories and testimonials from ex-combatants and other positive DDR impact stories. They may also include communication campaigns aimed at preventing recruitment. The potential role of the national authorities should also be assessed through analysis and where possible, national authorities should lead the strategic communication. 4. To transform attitudes in communities so as to foster DDR (strategic communication): Reintegration and/or CVR programmes are often crucial elements of DDR processes (see IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration). Strategic communication interventions can help to create conditions that facilitate peacebuilding and social cohesion and encourage the peaceful return of former members of armed forces and groups to civilian life. Communities are not homogeneous entities, and individuals within a single community may have differing attitudes towards the return of former members of armed forces and groups. For example, those who have been hit hardest by the conflict may be more likely to have negative perceptions of returning combatants. Others may simply be happy to be reunited with family members. The DDR process may also be negatively perceived as rewarding combatants. When necessary, strategic communication can be used as a means to transform the perceptions of communities and to combat stigmatization, hate speech, marginalization and discrimination against former members of armed forces and groups. Women and girls are often stigmatized in receiving communities and PI/SC can play a pivotal role in creating a more supportive environment for them. PI/SC should also be utilized to promote non-violent behaviour, including engaging men and boys as allies in promoting positive masculine norms (see IDDRS 5.10 on Women, Gender and DDR). Finally, PI/SC should also be used to destigmatize the mental health impacts of conflict and raise awareness of psychosocial support services.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0e2a4fcc-0bd2-4e98-9c74-9f42eec59002", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 10, - "Paragraph": "6. Planning and designing PI/SC strategies When designing a PI/SC strategy, DDR practitioners should take the following key factors into account: At what stage is the DDR process? Who are the primary and intermediary target audiences? Do these target audiences differ for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Who may not be eligible to participate in the DDR process? Does eligibility differ for different components of the DDR process (DDR programmes, DDR-related tools, reintegration support)? Are other, related PI/SC campaigns underway, and should these be aligned/deconflicted with the PI/SC strategy for the DDR process? What are the roles of men, women, boys and girls, and how have each of these groups been impacted by the conflict? What are the existing gender stereotypes and identities, and how can PI/SC strategies support positive change? Is there stigma against women and girls associated with armed forces and groups? Is there stigma against mental health issues such as post-traumatic stress? What are the literacy levels of the men and women intended to receive the information? What behavioural/attitude change is the PI/SC strategy trying to bring about? How can this change be achieved (taking into account literacy rates, the presence of different media, etc.)? What are the various networks involved in the dissemination of information (e.g., interconnections among social networks of ex-combatants, household membership, community ties, military reporting lines, etc.)? Which network members have the greatest influence? Do women and men obtain information by different means? (If so, which channels most effectively reach women?) In what language does the information need to be delivered (also taking into account possible foreign combatants)? What other organizations are involved, and what are their PI/SC strategies? How can the PI/SC strategy be monitored? What is the prevailing information situation? (What are the information needs?) What are the sources of disinformation and misinformation? Who are the key local influencers/amplifiers? What dominant media technologies are in use locally and by which population segments/demographics?", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "7b6a74d8-24f7-4388-acb2-d4be223cd49e", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 11, - "Paragraph": "6.1 Understanding the local context and \u2018do no harm\u2019 considerations To ensure that the DDR PI/SC strategy fits local needs, DDR practitioners should understand the social, political and cultural context and identify factors that shape attitudes. It will then be possible to define behavioural objectives and design messages to bring about the required social change. Target audience and issue analysis must be adopted to provide a tailored approach to engage with different audiences based on their concerns, issues and attitudes. During the planning stage, the aim should be to collect the following minimum information to aid practitioners in understanding the local context: Conflict analysis, including an understanding of local ethnic, racial and religious divisions at the national and local levels; Gender analysis, including the role of women, men, girls and boys in society, as well as the gendered power structures in society and in armed forces and groups; Media mapping, including the geographic reach, political slant and cost of different media; Social mapping to identify key influencers and communicators in the society and their constituencies (e.g., academics and intelligentsia, politicians, youth leaders, women leaders, religious leaders, village leaders, commanders, celebrities, etc.); Traditional methods of communication; Cultural perceptions of the disabled, the chronically ill, rape survivors, extra-marital childbirth, mental health issues including post-traumatic stress, etc.; Literacy rates; Prevalence of intimate partner violence and sexual and gender-based violence; and Cultural moments and/or religious holidays that may be used to amplify messages of peace and the benefits of DDR. Partners in the process also need to be identified. Particular emphasis \u2013 especially in the case of information directed at DDR participants, beneficiaries and communities \u2013 should be placed on selecting local theatre troops and animators who can explain concepts such as DDR, reconciliation and acceptance using figurative language. Others who command the respect of communities, such as traditional village leaders, should also be brought into PI/SC efforts and may be asked to distribute DDR messages. DDR practitioners should ensure that partners are able and willing to speak to all DDR participants and beneficiaries and also to all community members, including women and children. Two additional context determinants may fundamentally alter the design and delivery of the PI/SC intervention: The attitudes of community members towards ex-combatants, women and men formerly associated with armed forces and groups, and youth at risk; and The presence of hate speech and/or xenophobic discourse. In this regard, DDR practitioners shall have a full understanding of how the open communication and publicity surrounding a DDR process may negatively impact the safety and security of participants, as well as DDR practitioners themselves. To this end, DDR practitioners should continuously assess and determine measures that need to be taken to adjust information related to the DDR process. These measures may include: Removing and/or amending specific designation of sensitive information related to the DDR process, including but not limited to the location of reception centres, the location of disarmament and demobilization sites, details related to the benefits provided to former members of armed forces and groups, and so forth; and Ensuring the protection of the privacy, and rights thereof, of former members of armed forces and groups related to their identity, ensuring at all times that permission is obtained should any identifiable details be used in communication material (such as photo stories, testimonials or ex-combatant profiles).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "b1ca7a24-ed39-4c7f-afa2-02dcaf88a6cc", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 12, - "Paragraph": "6.2 Communicating about former members of armed forces and groups It is very important to pay attention to the language used in reference to DDR. This includes messaging about the process of disarmament and the \u2018surrender\u2019 of weapons, as well as the terms and expressions used to speak about and to ex-combatants and persons formerly associated with armed forces and groups. It is necessary to acknowledge that they are not naturally violent; that they might have left a lot behind in terms of social standing, respect and income in their armed group; and that therefore their return to civilian life may come with great economic and social sacrifices. The self-perception of former members of armed forces and groups (e.g., as revolutionaries or liberty fighters) also needs be understood, taken into consideration and, in some cases, positively reinforced to ensure their buy-in to the DDR process. Taking these sensitives into account may sometimes include the need to reprofile the language used by Government and local or even international media. It is of vital importance, especially when it comes to the prospect of reintegration, that the discourse used to talk about ex-combatants and persons formerly associated with armed forces and groups is not pejorative and does not reinforce existing stereotypes or community fears. Communicating about former members of armed forces and groups is also important in contexts where transitional justice measures are underway. The strategic communication and public information elements of supporting transitional justice as part of a DDR process (including, truth telling, criminal prosecutions and other accountability measures, reparations, and guarantees of non-recurrence) should be carefully planned (see IDDRS 6.20 on DDR and Transitional Justice). PI/SC campaigns should be designed to complement transitional justice interventions, and to manage the expectations of DDR participants, beneficiaries and communities. When transitional justice measures are visibly and publically integrated into DDR processes, this may help to ensure that grievances are addressed and demonstrate that these grievances were heard and taken into account. The visibility of these measures, in turn, contribute to improving the the prospects of social cohesion and receptibility between ex-combatants and communities.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2076bdaa-9eb2-475d-87e3-300041875fd1", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 13, - "Paragraph": "6.3 The preparation of PI/SC material While a PI/SC strategy is being prepared, other public information resources can be activated. In mission settings, ready-made public information material on peacekeeping and the UN\u2019s role can be distributed. However, DDR practitioners should be aware that most DDR-specific material will be created for the particular country where DDR will take place. Production of PI/SC material is a lengthy process. The time needed to design and produce printed sensitization tools, develop online content, and establishing dissemination channels (such as radio stations) should be taken into account when planning the schedule for PI/SC activities. Certain PI/SC materials may take less time to produce, such as digital communication; basic pamphlets; DDR radio programmes for broadcasting on non-UN radios; interviews on local and international media; and debates, seminars and public theatre productions. Pre-testing of PI/SC materials must also be included in operational schedules. In addition to these considerations, the strategy should have a coherent timeline, bearing in mind that while some PI/SC activities will continue throughout the DDR process, others will take place at specific times or during specific phases. For instance, particularly during reintegration, SC activities may be oriented towards educating communities to accept DDR participants and to have reasonable expectations of what reintegration will bring, as well as ensuring that survivors of sexual violence and/or those living with HIV/AIDS are not stigmatized and that connections are made with ongoing security sector reform, including arms control, police and judicial reform.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "9403e65d-80cf-4187-b28a-d20af7b45648", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 13, - "Paragraph": "6.4 Hate speech and developing counter-narratives Measures must be developed that, in addition to addressing misinformation and disinformation, challenge hate speech and attempt to mitigate its potential impacts on the DDR process. If left unchecked, hate speech and incitement to hatred in the media can lead to atrocities and genocide. In line with the United Nations Strategy and Plan of Action on Hate Speech, there must be intentional efforts to address the root causes and drivers of hate speech and to enable effective responses to the impact of hate speech. Hate speech is any kind of communication in speech, writing, or behaviour that attacks or uses pejorative or discriminatory language with reference to a person or a group on the basis of who they are, in other words, based on their religion, ethnicity, nationality, race, colour, descent, gender or other identifying factor. Hate speech aims to exclude, dehumanize and often legitimize the extinction of \u201cthe Other\u201d. It is supported by stereotypes, enemy images, attributions of blame for national misery and xenophobic discourse, all of which aim to strip the imagined Other of all humanity. This kind of communication often successfully incites violence. Preventing and challenging hate speech is vital to the DDR process and sustainable peace.\t Depending on the nature of the conflict, former members of armed forces and groups and their dependants may be the targets of hate speech. In some contexts, those who leave armed groups may be perceived, by some segments of the population, as traitors to the cause. They or their families may be targeted by hate speech, rumours, and other means of incitement to violence against them. As part of the planning for a DDR process in contexts where hate speech is occurring, DDR practitioners shall make all necessary efforts to include counter-narratives in the PI/SC strategy. These measures may include the following: Counter hate speech by using accurate and reliable information. Include peaceful counter-narratives in education and communication skills training related to the DDR process (e.g., as part of training provided during reintegration support). Incorporate media and information literacy skills to recognize and critically evaluate hate speech when engaging with communities. Include specific language on hate speech in DDR policy documents and/or related legislation. Include narratives, stories, and other material that rehumanize ex-combatants and persons formerly associated with armed forces and groups in strategic communication interventions in support of DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "a8ce81a0-7b16-431f-87bf-7cf830f8b006", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 14, - "Paragraph": "6.5 Gender-sensitive PI/SC in support of DDR PI officers and gender officers shall work closely together in the formulation of PI/SC strategies for DDR processes, drawing on existing gender analysis, and conducting additional gender assessments as required. Doing so allows the PI/SC strategy to support gender-equitable norms, to promote women\u2018s empowerment and non-violent versions of masculinities, and to combat stigma and socialization to violence (see IDDRS 5.10 on Women, Gender and DDR). One of the most critical PI/SC objectives in DDR is reaching WAAFAG and informing them of their eligibility. Ensuring that women are well represented in all PI materials helps prevent their exclusion from DDR processes. Engaging women early in the development and testing of PI messaging is essential to ensuring that communication materials and approaches respond to the specific needs and capacities of women and girls. Recognizing women\u2019s roles in peacebuilding and social cohesion, and utilizing opportunities to actively engage them in disseminating PI messages, is essential. Sensitization activities can provide an important entry point to address the gender dimensions of violence early in the DDR process. PI activities should capitalize on lessons already learned about how to implement gender-responsive PI campaigns geared towards men. For example, showing male leaders and male youth as strong and non-violent, and men as engaged fathers and partners with females in the community, can help to support both men and boys as well as women and girls. Through these approaches, PI/SC can support broader gender equality work in the country, ensuring that campaign messages, visuals, and awareness raising activities incorporate gender transformative messages including supporting women\u2019s empowerment, men\u2019s role as fathers, and non-violent, demilitarized forms of masculinities. PI/SC interventions and tools should include messaging on: Women\u2019s and men\u2019s roles as leaders working in partnership; Demilitarization of masculinities; Positive gender norms, including men\u2019s roles in communities as fathers; Destigmatization of psychosocial support services and individuals dealing with post-traumatic stress; Promotion of non-violent behaviour; Destigmatization of female combatants, females associated with armed forces and groups and their children, and male combatants; Men\u2019s and women\u2019s mutual responsibility and awareness around reproductive health and HIV/AIDS; Women\u2019s empowerment; and Destigmatization of victims/survivors of sexual violence and their children.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "c62c2490-0c72-477b-981c-c37186858517", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 15, - "Paragraph": "6.6 Anti-stigma and mental health PI/SC in support of DDR Given the psychological impact of conflict on ex-combatants and persons associated with armed forces and groups, as well as survivors and conflict-affected communities, it is essential for PI/SC to support anti-stigma campaigns and programmes, and to disseminate accurate and reliable information on ways to access support (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). PI/SC should draw on assessments and mapping of services and be developed in collaboration with health authorities, ensuring continuous access to information on the availability of assistance as well as clear referral pathways (clincs, servies, hotlines etc). Anti-stigma campaigns should include messaging on normalizing the mental health impacts of conflict on both men and women and fostering support for individuals and communities. In conflict settings, one person in five is living with some form of mental disorder, from mild depression or anxiety to psychosis. In this regard, PI/SC should avoid targeting or singling out DDR participants as the impact of conflict extends further than those who actively participated in combat. Interventions may include radio programmes, public service announcements, community theatre or seminars, print media, and other outlets as outlined in section 8.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "196a0f2b-a241-493a-8382-65e4ef83fd17", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 16, - "Paragraph": "7. Stakeholders or target audiences The planning and implementation of the PI/SC strategy shall acknowledge the diversity of stakeholders involved in the DDR process and their varied information needs. The PI/SC strategy shall also be based on integrated conflict and security analyses (see IDDRS 3.11 on Integrated Assessments). As each DDR process may contain different combinations of DDR programmes, DDR-related tools and reintegration support, the type of DDR process under way will influence the stakeholders involved and the primary and secondary audiences, and will shape the nature and content of PI/SC activities. The intended audience(s) will also vary according to the phase of the DDR process and, crucially, the changes in people\u2019s attitudes that the PI/SC strategy would like to bring about. What follows is therefore a non-exhaustive list of the types of target audiences most commonly found in a PI/SC strategy for DDR:", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "ad2238a3-a196-4f8f-937e-9ef510638075", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "7.1 Primary audience (participants and beneficiaries) The following stakeholders are often the primary audience of a DDR process: The political leadership: This may include the signatories of ceasefires and peace accords, when they are in place. Political leaderships may or may not represent the military branches of their organizations. The military leadership of armed forces and groups: These leaders may have motivations and interests that differ from the political leaderships of these entities. Likewise, within these military leaderships, mid-level commanders may hold their own views concerning the DDR process. DDR practitioners should recognize that the rank-and-file members of armed forces and groups often receive information about DDR from their immediate commanders, who may have incentives to provide disinformation about DDR if they are reluctant for their subordinates to leave military life. Rank-and-file of armed forces and groups: It is important to make the distinction between military leaderships, military commanders, mid-level commanders and their rank-and-file, because their motivations and interests may differ. Testimonials from the successfully demobilized and reintegrated rank-and-file have proven to be effective in informing their peers. Ex-combatants and persons formerly associated with armed forces and groups can play an important role in amplifying messages aimed at demonstrating life after war. Women associated with armed groups and forces in non-combat roles: It is important to cater to the information needs of WAAFAG, especially those who have been abducted. Communities, particularly women\u2019s groups, should also be informed about how to further assist women who manage to leave an armed force or group of their own accord. Children associated with armed forces and groups: Individuals in this group need child-friendly, age- and gender-sensitive information to help reassure and safely remove those who are illegally held by an armed force or group. Communities, local authorities and police should also be informed about how to assist children who have exited or been released from armed groups, as well as about protocols to ensure the protection of children and their prompt handover to child protection services. Ex-combatants and persons formerly associated with armed forces and groups with disabilities: Information and sensitization to opportunities to access and participate in DDR should reach this group. Families and communities should also be informed on how to support the reintegration of persons with disabilities. Youth at risk of recruitment: In countries affected by conflict, youth are both a force for positive change and, at the same time, a group that may be vulnerable to being drawn into renewed violence. When PI/SC strategies focus only on children and mature adults, the specific needs and experiences of youth are missed. Local authorities and receiving communities: Enabling the smooth reintegration of DDR participants into their communities is vital to the success of DDR. Communities and their leaders also have an important role to play in other local-level DDR activities, such as CVR programmes and transitional WAM as well as community-based reintegration support.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b46a13ee-1e29-46c8-a6c2-7813c90caf31", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": null, - "Paragraph": "7.2 Secondary audience (partners) In many cases, partnerships with other stakeholders are required to support the design, planning and implementation of the PI/SC strategy. The following partners are often the secondary audience of a DDR process; however, depending on the context, they may also be the primary audience (e.g., the international community in a regionalized armed conflict): Civil society: This includes women\u2019s groups, youth groups, local associations and non-governmental organizations that play a role in the DDR process, including those working as implementing partners of national and international governmental institutions. Religious leaders and institutions: The voices of moderate religious leaders can be amplified and coordinated with educators to foster coordination and promote messages of peace and tolerance. Legislative and policy-setting authorities: The legal framework in the country regulating the media can be reviewed and laws put in place to prevent the distribution of messages inciting hate or spreading misinformation. If this approach is used, care must be taken to ensure that civil and political rights are not affected. International and local media: International and local media are often the main source of information on progress in the peace process. Keeping both media segments supplied with accurate and up-to-date information on the planning and implementation of DDR is important in order to increase support for the process and avoid bad press. The media are also key whistleblowers that can identify, expose and denounce potential spoilers of the peace process. Private sector: Companies in the private sector can also be important amplifiers and partners, for example, by generating specific recruitment advertisements in support of reintegration opportunities. Local telecommunication companies and internet service providers can also offer avenues to further disseminate key messages. Opinion leaders/influencers: In many contexts, opinion leaders are public personalities who actively produce and interpret multiple sources of information to form an opinion. With the advent of social media, these actors generate viewership and large followings through regular programming and online presence. Regional stakeholders: These include Governments, regional organizations, military and political parties of neighbouring countries, civil society in neighboring States, businesses and potential spoilers. The international community: This includes donors, their constituencies (including, if applicable, the diaspora who can influence the direction of DDR), troop-contributing countries, the UN system, international financial institutions, non-governmental organizations and think tanks.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "aa97f9e1-5493-4e25-b1d5-29083aec6702", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8. Media This section outlines the various media that can be used in PI/SC strategies and the advantages and disadvantages associated with each. In both mission and non-mission settings, DDR practitioners should proactively identify PI/SC capacities to support national counterparts that are leading the process. Most peacekeeping operations include a PI/SC office with the following work streams and skill sets: media relations, multimedia and content production, radio content or station, and an outreach and campaigns unit. It is important for DDR practitioners to keep in mind that former members of armed forces and groups are not usually a standard target audience within a mission\u2019s PI/SC strategy. They may therefore need to engage with the PI/SC office in order for this group to be considered. In non-mission settings, DDR practitioners may seek out partnerships with relevant organizations or explore the possibility of bringing on board or working with existing PI/SC personnel. For example, most agencies, funds and programmes within the UN country team maintain communications officers or individuals with similar job profiles. In all contexts, local advisers shall be consulted. Once created, PI/SC messages and activities can be channeled using the various media outlined below. The selection of media type should be based on a thorough analysis of the geographic availability of that media, as well as which form of media best suits the content to be disseminated.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bbe6ad31-d1a0-4e19-af25-82901e9952ee", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8.1 Online and web presence When internet access is widespread, online tools (videos, dedicated websites, podcasts, social media campaigns, etc.) are important. Social media campaigns should be considered as they represent a low-resource way of reaching a large audience.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "477a1ff8-1a27-4464-a8a0-10a4d9080705", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 18, - "Paragraph": "8.2 Local, national and international radio stations When compared with other media, the advantage of radio is that it often reaches the largest number of people, particularly in developing countries. This is because radio is less dependent on infrastructural development or the technological sophistication and wealth of the listener. It can also reach those who are illiterate. However, it should not be assumed that women (and children) have the same access to radio as men, especially in rural areas, since they may not have the resources to buy either the radio or batteries. A DDR radio programme can assist in providing updates on the DDR process (e.g., the opening of demobilization sites and inauguration of reintegration projects). It can also be used to disseminate messages targeting women and girls (to encourage their participation in the process), as well as children associated with armed forces and groups (for e.g., on the consequences of enlisting or holding children). Radio messages can also support behavioural change programming, for example, by destigmatizing mental health needs (see IDDRS 5.70 on Health and DDR, IDDRS 5.80 on Disability-Inclusive DDR and IASC Guidelines on Mental Health and Psychosocial Support). Some peacekeeping missions have their own UN Radio stations. In contexts where this is not the case, DDR practitioners should explore partnerships with the private sector and/or civil society.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "455645d4-8800-4bc2-9c90-455c8579a6ef", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.3 Print media Print media may include leaflets, pamphlets, posters/cartoons, newsletters and magazines. Although the effectiveness of these various formats will be limited by the literacy of the intended audience, their main advantage is the durability and level of detail that printed information can contain. The added benefit of print media is that it can be passed from person to person in close-knit networks, increasing the potential impact of the content as it comes from a trusted source.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c7fd84e9-cf3d-4f9c-9036-90386a44a939", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.4 Visual media: television, film and billboards In countries where television is the most popular way of distributing information, it is essential that this medium is used, even if in a limited way. Some peacekeeping missions have established their own UN TV stations on a dedicated broadcasting frequency, while others have made arrangements to broadcast films, documentaries or other programming on existing public or private stations. The scheduling and frequency of broadcasts must be carefully planned to respond to the needs of the widest possible audience. Where cultural restrictions prevent women from watching films in public, alternatives, such as a women-only screening, should be negotiated. Billboards should not be overlooked as an effective tool for advertising DDR activities and/or achievements, as, when strategically positioned, they can reach a significant number of people.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b66c1e47-f4a2-4fba-95be-4f356a1e9162", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.5 Interactive forums: theatre, seminars, debates Although the main impact of theatre productions, seminars and debates may be on their direct audience, oral forms of communication have the advantage of involving the audience and building on existing cultural norms. Presenting ideas and concepts figuratively, especially if based on local folklore, culture and humour, can be particularly useful in communities with a strong oral culture. Interactive opportunities like this also afford critical opportunities to support equitable and positive gender norms, destigmatize mental health, and foster peacebuilding and social cohesion. These interactive mechanisms may also help to build social cohesion and work through trauma.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0528bb9d-3817-49a4-8027-b8f16b09dde0", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 19, - "Paragraph": "8.6 Local townhall events Local townhall events that are open to the public can offer a platform for dialogue with communities. They can serve as a wider peacebuilding platform using participatory methods to solicit input from affected populations. They can also provide the opportunity to pre-test messages on a small scale to ascertain their impact and reception before wider use and dissemination.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "064a202d-a11b-4a84-8a1f-28b6ab9f2770", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.7 Hotlines Hotlines can be a useful tool to inform DDR participants and beneficiaries about the development of the DDR process. Hotlines should be free of charge and can foster the engagement of the target audience and provide information and clarification on the DDR process.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5a4b9f69-a62b-4d09-9204-c0dc5ba83aca", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.8 Augmented and virtual reality Augmented and virtual reality techniques can allow partners, donors and members of the general public who are unfamiliar with DDR to immerse themselves in a real-life setting \u2013 for example, walking the path of an ex-combatant as he/she leaves an armed group and participates in a DDR process.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8c37366e-5058-4092-871a-3105f26572da", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "8.9 Gamification Gamification involves the application of typical elements of game playing (e.g., point scoring, competition with others, rules of play) to other areas of activity, typically as an interactive and social technique to encourage engagement with a topic, such as DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b5f1162a-dd05-4d7a-81c4-00c433cf93cd", - "Color": "#7366A3", - "Level": "4", - "LevelName": "", - "Title": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021", - "PageNum": 20, - "Paragraph": "9. Monitoring and evaluation From the start, it is important to identify measurable indicators (the pieces of information that will show whether objectives are being met) as well as how this information will be gathered (sources and techniques) in order to monitor and evaluate the impact of the PI/SC strategy. Any aspects of the PI/SC strategy that do not have the effect they were designed to achieve shall be adapted. Indicators may include: The number, sex, age and location (e.g, rural or urban) of people listening to radio programmes and consulting other media, including websites and social media, that convey messages regarding DDR; The number of participants and beneficiaries engaging in the DDR process as a result of PI/SC activities; The extent of the involvement of the local civilian population in reintegration programmes as a result of PI/SC efforts; and The change in expectations and knowledge about the process among target audiences before and after PI/SC activities. This information can be gathered through surveys and interviews conducted throughout the implementation of the DDR process and also from the activity reports of other organizations, media reports, staff at the demobilization sites, local civil society actors in the communities, etc. Findings should be used to guide and shape ongoing activities and contribute to improving future efforts. For further information, refer to IDDRS 3.50 on Monitoring and Evaluation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021.json b/static/data/json/IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021.json deleted file mode 100644 index 76ee1ce..0000000 --- a/static/data/json/IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021.json +++ /dev/null @@ -1,1788 +0,0 @@ -[ - { - "ID": "b3b096d4-d4f4-4068-bcaf-2e72973f9f2e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.20 Children and DDR Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026... 1 1. Module scope and objectives \u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 2 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 3 4. Guiding principles \u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 4 4.1 Voluntary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 4 4.2 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 5 4.3 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.4 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.5 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 7 4.6 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 7 4.7 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026.\u2026 7 4.8 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 8 4.9 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 8 4.10 Well planned ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 8 5. Normative legal frameworks \u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 10 5.1 International Human Rights Law.. 5.2 International Humanitarian Law\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u202612 5.3 International Criminal Law\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.12 5.4 UN Security Council resolutions: engagement with armed forces and groups\u2026....\u2026\u2026\u2026\u2026. 13 5.5 International Standards \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026.\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026.\u202613 6. Planning and Designing DDR processes for children \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..14 6.1 Assessments: Context analysis \u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026 14 6.2 Minimum preparedness actions \u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026.. 17 6.3 Data \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026. 16 7. Prevention of recruitment and re-recruitment of children \u2026.\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 18 7.1 Identification and documentation of risks of (re-)recruitment \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 19 7.2 Prevention of recruitment through the creation of a protective environment \u2026\u2026\u2026\u2026\u2026\u2026\u2026 20 8. Child sensitive approaches to DDR\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 23 8.1 Disarmament \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 23 8.2 Demobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 24 8.3 Interim alternative care\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 25 8.4 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 27 8.5 Reintegration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026. 27 9 Criminal responsibility and accountability ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026. 40 9.1 Children as victims\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 40 9.2 Minimum age of criminal responsibility\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.\u2026\u2026\u2026\u2026\u2026 40 9.3 Juvenile justice and child-specific due process and minimum standards\u2026\u2026 \u2026.\u2026\u2026.\u2026\u2026\u2026 41 9.4 Children associated with armed groups designated by the UN as terrorist organizations ..\u2026 42 9.5 Collecting testimonies from children .\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 44 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 44 Annex B: Determining a child\u2019s age \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026.. 44 Annex C: Management guidelines for interim care centres ...\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 47 Annex D: Do\u2019s and don\u2019ts for mental health and psychosocial support in emergency settings...50 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...53 5.20 Children and DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "98d6481f-0b50-428f-985b-aef2b51ea475", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Summary The recruitment of children \u2013 girls and boys under the age of 18 \u2013 and their use in hostilities or for other purposes by armed forces and groups is illegal. It is also one of the worst forms of child labour and exploitation. Efforts to prevent the recruitment of children into armed forces and groups should be a primary consideration during all DDR processes. Prevention efforts should start early\u2014when possible, they should commence prior to armed conflict\u2014and they should take place continuously throughout the conflict, with careful consideration given to the structural, social and individual factors associated with the risk of recruitment and re-recruitment. Irrespective of how children were recruited, the unconditional and immediate release of children associated with armed forces and groups (CAAFAG) shall be required. Any person under 18 years old must be supported to demobilize and reintegrate into families and communities at all times, irrespective of the status of peace negotiations and/or the development of DDR processes. Nonetheless, where relevant, peace processes, including peace agreements and DDR policy documents, offer an opportunity to highlight the needs of children affected by armed conflict and to ensure that actions and funding streams to support child-specific processes are included. The commitment to stop the recruitment and use of children and to release children from armed forces and groups shall be explicit within peace agreements. DRR processes shall be specific to the needs of children and apply child-sensitive and gender-transformative approaches to planning, implementation, and monitoring. As such, children shall be separated from armed forces and groups, handed over to child protection actors and supported to demobilize and reintegrate into families and communities. DDR practitioners and relevant child protection actors shall work together to design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, that help children to recover and reintegrate into their communities, and that take into account differences in age and gender needs. DDR practitioners should promote agency of children, enabling their right to participate in decision-making and shape DDR processes in line with their concerns/needs. The specific needs of children formerly associated with armed forces and groups during reintegration are multisectoral, as boys and girls often require support in (re)accessing education, an alternative livelihood, medical and mental health services, including reproductive health services and sexual violence recovery services, as well as other services that promote life skills and help them establish a meaningful role in society. Child-sensitive approaches to reintegration support should be focused on long-term and sustainable opportunities for children formerly associated with armed forces and groups that are gender- and age-sensitive. For sustainability, and to avoid tension, stigmatization or envy when a child is returned, DDR practitioners should ensure that broader community development processes are also considered DDR practitioners should also be aware that\u00a0no child below the minimum age of criminal responsibility (MACR) should be investigated, prosecuted, or deprived of their liberty for any offence, including security and terrorism-related offences, in line with the provisions of the Convention on the Rights of the Child. The Committee on the Rights of the Child encourages States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. Children, above the age of criminal responsibility, who are suspected of committing a serious crime, shall be handed over to civilian actors, and justice should be provided within juvenile justice frameworks. During all processes they shall be treated primarily as victims and as survivors of grave violations of their rights. Any investigation or determination of culpability shall be handled by trained civilian actors, including, where relevant, trained juvenile justice actors and made based on processes consistent with applicable international child rights standards, including the Convention on the Rights of the Child, and internationally recognized juvenile justice standards and principles, due process and fair trial standards, prioritizing the child\u2019s recovery, reintegration, and best interests in all decisions.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "9cbae31e-ca86-46df-87cb-66b437ff2dcb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module aims to provide DDR practitioners and child protection actors with guidance on the planning, design and implementation of DDR processes for CAAFAG in both mission and non-mission settings. The main objectives of this guidance are: To set out the main principles that guide all aspects of DDR processes for children. To outline the normative legal framework that applies to children and must be integrated across DDR processes for children through planning, design, implementation and monitoring and evaluation. To provide guidance and key considerations to drive continuous efforts to prevent the recruitment and re-recruitment of children into armed forces and groups. To provide guidance on child- and gender-sensitive approaches to DDR highlighting the importance of both individualized and community-based approaches. To highlight international norms and standards around criminal responsibility and accountability in relation to CAAFAG. This module is applicable to all CAAFAG but should be used in conjunction with IDDRS 5.30 on Youth and DDR. IDDRS 5.30 provides guidance on children who are closer to 18 years of age. These children, who are likely to enter into employment and who have socio-political reintegration demands, especially young adults with their own children, require special assistance. The challenge of demobilizing and reintegrating former combatants who were mobilized as children and demobilized as adults is also covered in IDDRS 5.30. In addition, this module should also be read in conjunction with IDDRS 5.10 on Women, Gender and DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "da056dc2-f112-4d98-933c-930c6f180836", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization (ISO) standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; and, e) \u2018must\u2019 is used to indicate an external constraint or obligation. Children associated with armed forces or armed groups refers to persons below 18 years of age who are or who have been recruited or used by an armed force or group in any capacity, including but not limited to children, boys or girls, used as fighters, cooks, porters, messengers, spies or for sexual purposes. This term is used in the Paris Principles and is used here instead of the term \u2018child soldiers\u2019 because it more inclusively recognizes children who perform not only combat roles but also support or other functions in an armed force or group. Child recruitment refers to compulsory, forced and any other conscription or enlistment of children into any kind of armed force or armed group. This can include recruitment by communities, coerced recruitment, or abductions into armed forces and groups. The definition is purposefully broad and encompasses the possibility that any child recruitment may be coerced, forced, or manipulated based on the child\u2019s circumstances and may appear voluntary. Unlawful recruitment or use is recruitment or use of children under the age stipulated in the international treaties applicable to the armed force or group in question or under applicable national law. The Optional Protocol on the Involvement of Children in Armed Conflict (OPAC) bans recruitment of children under 15 and requires States to take all possible measures to prevent recruitment of children under 18 including the adoption of legal measures necessary to prohibit and criminalize such practices. It also bans all recruitment and use of children by armed groups. The Convention on the Rights of the Child (CRC), the Geneva Conventions and the Rome Statute ban recruitment of children under age 15. Release includes the process of formal and controlled disarmament and demobilization of children from an armed force or group, as well as the informal ways in which children leave by escaping, being captured or any other means. It implies a disassociation from the armed force or group and the beginning of the transition from military to civilian life. Release can take place during a situation of armed conflict; it is not dependent on the temporary or permanent cessation of hostilities. Release is not dependent on children having weapons to forfeit. Reintegration of children is the process through which children transition into society and enter meaningful roles and identities as civilians who are accepted by their families and communities in a context of local and national reconciliation. Sustainable reintegration is achieved when the political, legal, economic and social conditions needed for children to maintain life, livelihood and dignity have been secured. The reintegration process aims to ensure that children can access their rights, including formal and non-formal education, family unity, dignified livelihoods and safety from harm.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "4d6b8d34-f136-4a9e-9996-861ad7ecf0d5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 5, - "Paragraph": "3. Introduction All child recruitment or use by armed groups is illegal under international law (OPAC Article 4), as is all use of children in hostilities (OPAC Article 1), conscription by state armed forces (OPAC Article 2, International Convention on the Worst Forms of Child Labour (ILO Convention (No. 182)), or enlistment of children without appropriate safeguards (OPAC Article 3). All child recruitment and use into armed forces is also illegal for those State parties to the Operational Protocol to the Convention Against Torture. The recruitment and use of children under 15 by armed forces and groups may amount to a war crime. There is significant international consensus that the recruitment of children under 18 years old is inconsistent with international standards on child protection. DDR processes, including release and reintegration support for children, shall therefore prioritize prevention, separation of children from armed forces or groups, and redress of this human rights violation. DDR processes shall be specific to the needs of children and apply child- and gender-sensitive approaches. This module provides critical guidance for DDR practitioners and child protection actors on how to work together to plan, design and implement services and interventions that aim to prevent children\u2019s recruitment and re-recruitment, as well as help children to recover and reintegrate children into their families and communities. The guidance recognizes that the needs of children formerly associated with armed forces and groups during reintegration are multisectoral and different than those of adults. Child-sensitive approaches require DDR practitioners and child protection actors to tailor interventions to meet the specific needs of individual boys and girls, but also to target other conflict-affected or at-risk children within the broader community in which children are reintegrating. Finally, the module recognizes that children, as victims of recruitment and use, should not be prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, and notes that children who have reached the MACR and who may have committed criminal acts shall be afforded the protections to which they are entitled, including their rights to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities. 4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to children and DDR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f41dd15f-c310-4410-9c60-4c38b5c1664f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children are entitled to release from armed forces and groups at all times, without pre-condition. Processes for planning and implementing DDR processes shall not delay demobilization or other forms of release of children. Given their age, vulnerability and child-specific needs, during DDR processes, children shall be separated from armed forces and groups and handed over to child protection actors and supported to demobilize and reintegrate into families and communities in processes that are separate from those for adults, according to their best interests. While it is critical that children be supported, they shall not be pressured to wait for or to participate in release processes. They shall also not be removed from their families or communities to participate in DDR processes unless it has been determined to be in their best interest. Their decision to participate shall voluntary and based on informed consent.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5f0c2c66-10c8-409d-b1dc-5fdcc28368f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Any person below 18 years of age who is associated with an armed force or group shall be eligible for participation in a DDR process designed specifically for children. Children can be associated with armed forces and groups in a variety of ways, not only as combatants, so some may not have access to weapons or ammunition. This is especially true for girls who are often used for sexual purposes, as wives or cooks, but may also be used as spies, logisticians, fighters, etc. DDR practitioners shall recognize that all children must be released by the armed forces and groups that recruited them and receive reintegration support. Eligibility for DDR processes for CAAFAG shall not be conditioned on the child\u2019s possession and handover of a weapon or ammunition, participation in hostilities or weapons training; there shall be no conditions, of any kind, for their participation. If there is doubt as to whether an individual is under 18 years old, an age assessment shall be conducted (see Annex B). In cases where there is no proof of age, or inconclusive evidence, the child shall have the right to the rule of the benefit of the doubt.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "2e2ad41d-78bf-41cc-bfce-2cb66efbeec1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A dependent child of an ex-combatant shall not automatically be considered to be associated with an armed force or group. However, armed forces or groups may identify some children, particularly girls, as dependents, including as wives, when the child is an extended family member/relative, or when the child has been abducted, or otherwise recruited or used, including through forced marriage. A safe, child- and gender-sensitive individualized determination shall be undertaken to determine the child\u2019s status and eligibility for participation in a DDR process. DDR practitioners and child protection actors shall be aware that, although not all dependent children may be eligible for DDR, they may be at heightened vulnerability and may have been exposed to conflict-related violence, especially if they were in close proximity to combatants or if their parents are ex-combatants. These children shall therefore be referred for support as part of wider child protection and humanitarian services in their communities.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6365d59e-ace4-41b9-93e0-b06d47cb8001", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR processes for children shall not be contingent on political negotiations or adult DDR processes. Efforts shall always be made to prevent recruitment and to secure the release of children associated with armed forces or armed groups, irrespective of the stage of the conflict or status of peace negotiations. Doing so may require negotiations with armed forces or groups. Special provisions and efforts may be needed to reach girls, who often face unique obstacles to identification and release. These obstacles may include specific sociocultural factors, such as the perception that girl \u2018wives\u2019 are dependents rather than associated children, gendered barriers to information and sensitization, or fear by armed forces and groups of admitting to the presence of girls.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5c1bf8c7-8d88-4cf8-861e-fcc5c08c6ff0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The mechanisms and structures for the release and reintegration of children shall be set up as soon as possible and continue during ongoing armed conflict, before a peace agreement is signed, a peacekeeping mission is deployed, or a DDR process or security sector reform (SSR) process is established.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cf0f19c2-54f1-4e6c-9b98-8b3ed71ab572", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Armed forces and groups rarely acknowledge the presence of children in their ranks, so children are often not identified and are therefore excluded from support linked to DDR. DDR practitioners and child protection actors involved in providing services during DDR processes, as well as UN personnel more broadly, shall actively call for the unconditional release of all CAAFAG at all times, and for children\u2019s needs to be considered. Advocacy of this kind aims to highlight the issues faced by CAAFAG and ensures that the roles played by girls and boys in conflict situations are identified and acknowledged. Advocacy shall take place at all levels, through both formal and informal discussions. UN agencies, diplomatic missions, mediators, donors and representatives of parties to conflict should all be involved. If possible, advocacy should also be linked to existing civil society actions and national systems.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "70b7244f-a061-401f-8408-21d5dc096cd7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.2.3 In accordance with standards and principles of humanitarian assistance DDR processes shall respect the principles of international humanitarian law and promote the human rights of DDR participants, including children, and the communities into which they reintegrate. Core principles for delivery of humanitarian assistances include humanity, impartiality, neutrality and independence. When supporting children and families therefore, care shall be taken to assess the possible impact of measures on vulnerable populations which may, by their very nature, have disproportionate or discriminatory impacts on different groups, even if unintended. Responses shall enhance the safety, dignity, and rights of people, and avoid exposing them to harm, provide access to assistance according to need and without discrimination, assist people to recover from the physical and psychological effects of threatened or actual violence, coercion or deliberate deprivation, and support people to fulfil their rights.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "3d06c314-6058-4b3b-85db-ace3d6fcab81", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Conflict harms all children, whether they have been recruited or not. An inclusive approach that provides support to all conflict-affected children, including girls, particularly those with vulnerabilities that place them at risk of recruitment and use, shall be adopted to address children\u2019s needs and to avoid the perception that CAAFAG are being rewarded for association with an armed force or group. Gender-responsive approaches recognize the unique and specific needs of boys and girls, including the need for both to have access to sexual violence recovery services, emotional skill development and mental health and psychosocial support. Non-discrimination and fair and equitable treatment are core principles of DDR processes. Children shall not be discriminated against due to age, sex, race, religion, nationality, ethnicity, disability or other personal characteristics or associations they or their families may hold. Based on their needs, CAAFAG shall have access to the same opportunities irrespective of the armed force or group with which they were associated. Non-discrimination also requires the establishment of mechanisms to enable those CAAFAG who informally leave armed forces or groups to access child-sensitive DDR processes (see section 4.1).", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "fcc9867f-af96-47c3-a25c-dc01fa1d84ff", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A conflict sensitive approach ensures that children associated with different groups and forces shall have equal access to and benefit from programmes. Additionally, opportunities to promote peacebuilding and social cohesion through child protection support services and activities shall be leveraged to fortify and build stronger connections between children, irrespective of the armed group or force with which they were previously traveling or associated. DDR practitioners shall ensure that no harm is done to children or their families. Rather, they shall seek to maximize any benefits to children, while minimizing any harm. This shall be done through: Assessing and monitoring both positive and negative impacts for children, disaggregating data by age, gender and vulnerabilities of the child, while keeping such data protected; and Listening to and considering the voices and views of children in the planning, design, implementation and review of DDR processes.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "f0e7e548-0347-45f8-9cb9-312d294f102f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners shall recognize that each conflict context is different, with its own social, political, cultural, economic, gender and other dynamics, and that girls and boys have different needs and capacities. These specificities also require DDR practitioners to recognize that the mechanisms for consultation and engagement may differ by context, hence requiring tailored strategies. There is no simple formula that can be applied in all circumstances.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "764d729a-b547-4935-963c-eb8c99410e23", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Sufficient long-term funding is required to implement effective child-sensitive DDR processes. Funding should be made available through a funding mechanism that is independent of, and managed separately from, DDR processes for adults. This funding should be planned for at the outset. DDR practitioners and specialized child protection actors shall be called upon for the necessary political, technical and operational leadership within the Government and within the framework of the UN mission or the UN Country Team.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "61b5778a-ada7-4889-848e-8c72a88c4c21", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners and child protection actors shall reaffirm the importance of and respect the best interests of the child and require project staff to be accountable to children and their caregivers.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2eaa8aa0-24b5-44bb-b74d-aa7f258ca2be", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR processes for children shall link to national and local structures for child protection with efforts to strengthen institutions working on child rights and advocacy. DDR processes for children require a long implementation period and the long-term success of DDR processes depends on and correlates to the capacities of local actors and communities. These capacities shall be strengthened to support community acceptance and local advocacy potential.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cfb4360b-c97b-4adb-a4cd-9bf547856e4e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Participatory and decentralized consultation should be encouraged so that common strategies, responsive to local realities, can be designed. National frameworks, including guiding principles, norms and procedures specific to the local and regional context, shall be established. Clear roles and responsibilities, including engagement and exit strategies, shall be agreed upon by all actors. All such consultation must ensure that the voices of children, both boys and girls, are heard and their views are incorporated into the design of DDR processes. As social norms may influence the ability of children to speak openly and safely, DDR practitioners shall consult with experts on child participation.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "a68c6cc3-c822-4c7b-afff-203abbe3ef7e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "To ensure long-term sustainability, Government should be a key partner/owner in DDR processes for children. The level of responsibility and national ownership will depend on the context and/or the terms of the peace accord (if one exists). Appropriate ministries, such as those of education, social affairs, families, women, labour, etc., as well as any national DDR commission that is set up, shall be involved in the planning and design of DDR processes for children. Where possible, support should be provided to build Government capacity on child protection and other critical social services.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b2c9d38d-1c8f-47b0-a13a-8ce19c9a4342", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.8 Regionally supported Where appropriate, DDR practitioners shall consider regional initiatives prohibiting and responding to the recruitment and use of CAAFAG. Furthermore, regional organizations and arrangements to undertake efforts to obtain the release of children from armed forces and groups and their family reunification shall be supported.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "845dd50a-3991-4e14-b5ec-f69e31967141", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.9 Integrated Effective coordination with other related sectors (including education, health, youth, and employment) and relevant agencies/ministries is critical to the success of DDR processes for children. Systems for coordination, information-sharing and reporting shall be established and continuously implemented, so that all concerned parties can work together and support each other, particularly in the case of contingency and security planning. Coordination shall be seen as a vital element of the ongoing monitoring of children\u2019s well-being and shall be utilized to further advanced preparedness, prevent (re-)recruitment and ensure conflict sensitivity. Effective coordination between DDR practitioners working with children and adults should be promoted to support the transition from child to adult for older children (ages 15\u201318). Data on CAAFAG shall be safely secured and only made available to those who have a specific need to access it for a specific purpose that is in a child\u2019s best interests, for example, to deliver a service or make a referral. Confidentiality shall be respected at all times.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "ebc715d7-63d2-41c4-82a4-3c8b82f2505a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.1 Safety and security Prevention and release require considerations related to safety of children, families, communities, DDR practitioners and other staff delivering services for children. DDR processes for children may be implemented in locations where conflict is ongoing or escalating, or in fragile environments. Such contexts present many potential risks and DDR practitioners shall therefore conduct risk assessments and put in place measures to mitigate identified risks before initiating DDR processes. Particular consideration shall be given to the needs of girls and protection of all children from sexual exploitation and abuse. All staff of UN organizations delivering child protection services and organizing DDR processes shall adhere to the requirements of the Secretary-General\u2019s Bulletin on the Special Measures for Protection from Sexual Exploitation and Sexual Abuse (for UN entities) and the Interagency Standing Committee\u2019s Six Core Principles Relating to Sexual Exploitation and Abuse. DDR processes shall establish an organizational child protection policy and/or safeguarding policy and an individual code of conduct that have clear, strong, and positive commitments to safeguard children and that outline appropriate standards of conduct, preventive measures, reporting, monitoring, investigation and corrective measures the Organization will take to protect participants and beneficiaries from sexual exploitation and abuse.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "6c9fc30c-0b4b-485a-8ec7-d9e590587bea", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.2 Planning, assessment, design, monitoring and evaluation The best interests of the child shall be a primary consideration in all assumptions and decisions made during planning. Emphasis is often placed on the need to estimate the numbers of children in armed forces and groups in order to plan actions. While this is important, policymakers and planners should also recognize that it is difficult to obtain accurate figures. Uncertain estimates during planning, however, should not prevent DDR processes for children from being implemented, or from assuring that every child will have sustained reintegration support. Children shall not be included in the count of members of any armed force or group at the time of a DDR process, SSR, or power-sharing negotiations. Legitimacy shall not be given to child recruitment through the inclusion of children within DDR processes to inflate numbers, for example. However, as children will require services, for the purposes of planning the budget and the DDR process itself, children shall be included in the count of persons qualifying for demobilization and reintegration support.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e3857cfc-22f5-4ed7-b6d6-ae33e6f473e6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Many children who are formally or informally released or who have otherwise left armed forces or groups never have the opportunity to participate in child-sensitive DDR processes. This can happen when a child who flees an armed force or group is not aware of their rights or lives in an area where DDR processes are unavailable. Girls, in particular, may be at higher risk of this as they are often \u2018unseen\u2019 or viewed as dependents. DDR practitioners and child protection actors shall understand and plan for this type of \u201cself-demobilization,\u201d and the difficulties associated with accessing children who have taken this route. If levels of informal release or separation are believed to be high (through informal knowledge, data collection or situation analysis), during the planning and design phases, in collaboration with child protection actors, DDR practitioners shall establish mechanisms to inform these children of their rights and enable access to reintegration support.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "f41b4238-c11b-4f6b-a1dd-1f9412f0581e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.10.3 Public information and community sensitization Families and communities shall be sensitized on the experiences their children may have had during their association with an armed force or group and the changes they may see, without stigmatizing them. CAAFAG, both girls and boys, often experience high levels of abuse (sexual, physical, and emotional), neglect and distressing and events (e.g., exposure to and perpetration of violence, psychological and physical injury, etc.). They will require significant support from their families and communities to overcome these challenges, and it is therefore important that appropriate sensitization initiatives are in place to ensure that this support is understood and forthcoming. To increase children\u2019s awareness of their rights and the services available, DDR practitioners should use targeted gender- and age-sensitive public communication strategies such as public service announcement campaigns (radio, social media and print), child-friendly leaflet drops in strategic locations, peer messaging and coordination with grassroots service providers to reach children. It is critical for DDR practitioners to maintain regular communication with CAAFAG regarding release and reintegration processes and support, including services offered and eligibility criteria, any changes to the support provided (delays or alternative modes of service delivery), and the availability of other services and referrals. A lack of proper communication may lead to misunderstandings and frustration among children and community members and further conflict. Communications strategies should be highly flexible and responsive to changing situations and needs. Strategies should include providing opportunities for people to ask questions about DDR processes for children and involve credible and legitimate local actors (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). A well-designed communications strategy creates trust within the community and among the key actors involved in the response and facilitates maximum participation. In all communications, children\u2019s confidentiality shall be maintained, and their privacy protected.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "928dca6a-6984-4b4a-89d5-961f8df0a7e4", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 11, - "Paragraph": "5. Normative legal frameworks DDR practitioners shall proactively seek to build the following key normative legal frameworks into DDR, from planning, design, and implementation to monitoring and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "a7ee3edf-cb73-4419-bfe0-aeebf195686c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.1 The Convention on the Rights of the Child and its Optional Protocols The CRC and its OPAC constitute the framework for the principles, norms and standards that underpin DDR processes for children. The CRC defines a \u2018child\u2019 as any human being below the age of 18 years unless, under the law applicable to the child, majority is attained earlier. OPAC prohibits recruitment and use in hostilities of anybody under 18 years of age by armed groups. OPAC also obligates States Parties to set the minimum age of voluntary recruitment of persons into their national armed forces as 15 years of age, establishes safeguards for the voluntary recruitment of persons below the age of 18, and asserts that State Parties take all feasible measures to ensure that members of the national armed forces that are under the age of 18 do not take part in direct hostilities. The rights of the child, as espoused through the CRC and its OPAC, further support the reintegration of CAAFAG through requiring States to promote: The child's right to life, survival and development: This right is not limited to ensuring a child\u2019s physical wellbeing but includes the need to ensure full and harmonious development, including at the spiritual, moral and social levels, where education plays a key role. In respect to DDR processes for children, this shall include consideration of how a child\u2019s experience in conflict impacts upon his/her own evolving capacities, as well as recognition of the resilience displayed in surviving and overcoming difficulties. The child\u2019s right to be free from arbitrary detention - No child shall be deprived of his or her liberty unlawfully or arbitrarily. The arrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time. The child\u2019s right to\u00a0fair justice and fair treatment - \u00a0States recognize the right of every child alleged as, accused of, or recognized as having infringed the penal law to be treated in a manner consistent with the promotion of the child's sense of dignity and worth, which reinforces the child's respect for the human rights and fundamental freedoms of others and which takes into account the child's age and the desirability of promoting the child's reintegration and the child's assuming a constructive role in society. States shall seek to promote the establishment of laws, procedures, authorities and institutions specifically applicable to children alleged as, accused of, or recognized as having infringed the penal law, and, in particular The physical and psychological recovery and social reintegration of child victims: States shall take all appropriate measures to promote physical and psychological recovery and social reintegration of a child victim of: any form of neglect, exploitation, or abuse; torture or any other form of cruel, inhuman or degrading treatment or punishment; or armed conflicts. DDR practitioners shall work with States to ensure that recovery and reintegration takes place in an environment which fosters the health, self-respect and dignity of the child. Article 7 of the OPAC forms the legal basis for support to CAAFAG through the obligation of signatories to rehabilitate and socially reintegrate CAAFAG. The child\u2019s right to be free from discrimination: States shall ensure respect for the rights of all children within their jurisdiction \u2013 including non-national children \u2013 regardless of race, sex, age, religion, ethnicity, opinions, disability or any other status of the child or the child\u2019s parents or legal guardians. DDR practitioners shall pay particular attention to ensuring the full involvement and inclusion of girls and their children, as well as addressing any stigmatization of CAAFAG. The child\u2019s right to participate: Children shall be allowed to express their opinions freely and participate in making decisions concerning family reunification and career and educational opportunities, and those opinions should be given due weight in accordance with the age and maturity of the child. Children shall be consulted at all stages of the release and reintegration process, and actions that affect them shall be in their best interests, considering their needs and concerns, placement and family. The child\u2019s best interests as a primary consideration: Actions that affect the child should be based on an assessment of whether those actions are in the child\u2019s best interests. As part of DDR processes for children, this shall mean that all measures to assure release, protection, reintegration and prevention of re-recruitment shall be determined by their best interests. A child shall participate in determining what is in his/her best interests.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "abb69533-1077-4334-9c3c-0ccf8464be63", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.2 The Worst Forms of Child Labour Convention Under Article 3 of the International Labour Organization Convention No. 182, States Parties shall take immediate and effective measures to secure the prohibition and elimination of the worst forms of child labour, which include the forced or compulsory recruitment of children for use in armed conflict (a child being defined as a person under the age of 18). Under Article 7(b) the convention also requires States to prevent the engagement of children in the worst forms of child labour, and to provide the necessary and appropriate direct assistance for the removal of children from the worst forms of child labour and for their rehabilitation and reintegration.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "bf0e23b0-499c-41a2-89bb-436413912d88", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.1.3 African Charter on the Rights and Welfare of the Child The African Charter on the Rights and Welfare of the Child (1990) requires that States take all necessary measures to ensure that no child shall take a direct part in hostilities and refrain, in particular, from recruiting any child (Article 22). 5.2 International Humanitarian Law", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "cc690b61-e1e8-4c1f-91a1-4c11bba1ef64", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.2.1 Additional Protocols I and II to the Geneva Conventions The Additional Protocols I (Article 77) and II (Article 4(3)) to the Geneva Conventions call for the special respect and protection of children in armed conflict (Rule 135), underscoring that children who have not attained the age of fifteen years, shall neither be recruited into armed forces or groups (Rule 136), nor be allowed to take part in hostilities (Rule 137). The protocols provide for additional special protection for children affected by armed conflict to include protection against all forms of sexual violence (Rule 93), separation from adults while deprived of liberty, unless they are members of the same family (Rule 120), access to education food and health care (Rules 55, 118, and 131), evacuation from areas of combat for safety reasons (Rule 129), reunification of unaccompanied children with their families (Rules 105 and 131), and application of the death penalty. 5.3 International Criminal Law", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2d260d41-1ea8-4c3a-9435-12252035c3f8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.3.1 The Rome Statute of the International Criminal Court Article 8(2)(b)(xxvi) and 8(2)(e)(vii) of the Rome Statute of the International Criminal Court makes it a war crime, leading to individual criminal prosecution, to conscript or enlist children under the age of 15 years into armed forces or groups or to use them to participate actively in hostilities, in both international and non-international armed conflicts.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fdfa9ff1-ae46-4e66-b250-2227209092c3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.4.1 Security Council Resolution 1539 Security Council resolution 1539 (2004) calls for engaging armed forces and groups in dialogue leading to time-bound action plans to prevent and end grave violations against children, including the release of children. Those engaged in securing the release of children should make contact with armed forces and groups recruiting and using children, where it is safe to do so and in accordance with UN guidelines. Engagement with armed forces and groups will often occur as part of the Monitoring and Reporting Mechanism (MRM) led by the Country Task Force on Monitoring and Reporting. Those parties to the conflict that enter into dialogue with the UN can develop time-bound action plans, following their listing in the annexes of the Secretary General\u2019s annual report for grave violations against children (including the recruitment and use of children). The unconditional release of children, prevention of grave violations and awareness-raising on the issue of child recruitment and use, as well as other activities, shall be included in such action plans. Training and capacity building for armed forces or groups on their obligations under international law relating to the recruitment and use of children should be provided, including the identification and release of children, age assessment procedures to prevent child association, gender-based violence and other child protection concerns, and respect for humanitarian norms and principles.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "30269615-2635-400d-961b-3437e912922f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 14, - "Paragraph": "5.4.2 Security Council Resolution 2427 Security Council Resolution 2427 (2018) urges \u201cconcerned Member States to mainstream child protection and ensure that the specific needs of girls and boys are fully taken into account at all stages of disarmament, demobilization, and reintegration processes (DDR), including through the development of a gender-and age-sensitive DDR process\u201d. The resolution also stresses the need to pay particular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit acts of terrorism, in particular by establishing standard operating procedures for the rapid handover of these children to relevant civilian child protection actors.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b0cf8640-80a3-4081-bf3a-8b18865f8a09", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.5.1 The Paris Principles and Paris Commitments The 2007 Paris Principles, building on the 1997 Cape Town Principles, detail eight general principles and eight operational principles to protect children. Specific consideration is given to girls and their particular needs and challenges. The Paris Principles aim to guide interventions with the following objectives: To prevent the unlawful recruitment or use of children; and To facilitate the release of CAAFAG; and To facilitate the reintegration of all CAAFAG; and To ensure the most protective environment for all children. The Paris Commitments \u2013 commitments to protect children from unlawful recruitment or use by armed forces or groups \u2013 supplement the Paris Principles and have two main priorities: (1) to put an end to the unlawful recruitment and use of children by armed forces and groups globally, and (2) to make all necessary efforts to uphold and apply the Paris Principles through political, diplomatic, humanitarian, technical assistance and funding roles, consistent with international obligations.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "eb5e3ecf-f4d8-4056-86a0-663564b1a302", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Applicable in the context of CAAFAG, the UN Standard Minimum Rules for the Administration of Juvenile Justice adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. When children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "aff39ee6-642d-4b60-9109-e551f1cf73f3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "207cd4c9-4348-42b7-996f-05c80013d949", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 15, - "Paragraph": "6. Planning DDR processes for children DDR processes for children require joint planning and coordination between DDR practitioners and child protection actors involved in providing services. Joint planning and coordination should be informed by a detailed situation analysis and by a number of Minimum Preparedness Actions.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "576c5d80-3699-4823-b227-bc914ed8d191", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A detailed situation analysis should assess broad conflict-related issues (location, political and social dynamics, causes, impacts, etc.) but also the specific impacts on children, including disaggregation by gender, age and location (urban-rural). The situation analysis is critical to identifying obstacles to, and opportunities for, reintegration support. A detailed situation analysis should examine: The objectives, tactics and command structure/management/hierarchy of the armed force or group; The circumstances, patterns, causes, conditions, means and extent of child recruitment by age and gender; The emotional and psychological consequences of children\u2019s living conditions and experiences and their gendered dimensions; Attitudes, beliefs and norms regarding gender identities in armed forces and groups and in the community; The attitudes of families and communities towards the conflict, and the extent of their resilience and capacities; The absorption capacity of and support services necessary in communities of return, in particular families, which play a critical role in successful release and reintegration efforts; The extent of children\u2019s participation in armed forces and groups, including roles played and gender, age or other differences; Children\u2019s needs, expectations, and aspirations; The evident obstacles to, and opportunities for, child and youth reintegration, with consideration of what risks and opportunities may arise in the future; and The needs of, and challenges of working with, special groups (girls, girl mothers, disabled children, foreign children, young children, adolescents, male survivors of sexual violence, severely distressed children, children displaying signs of post-traumatic stress disorder, and unaccompanied and separated children). DDR practitioners should be aware that the act of asking about children\u2019s and communities\u2019 wishes through assessments can raise expectations, which can only be managed by being honest about which services or assistance may or may not ultimately be provided. Under no circumstances should interviewers or practitioners make promises or give assurances that they are not certain they can deliver. Neither should they make promises about actions others may take. Some suggested key questions for context analysis can be found in Box 1 (see also IDDRS 3.11 on Integrated Assessments).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "83fda258-cc33-45f3-a400-09e347d0c48f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.2 Minimum Preparedness Actions In addition to the context analysis, DDR practitioners and child protection actors should take the following Minimum Preparedness Actions into consideration when planning. These actions (outlined below) are informed by the Interagency Standing Committee\u2019s Emergency Response Preparedness Guidelines (2015): Risk monitoring is an activity that should be ongoing throughout implementation, based on initial risk assessments. Plans should be developed detailing how this action will be conducted. For CAAFAG, specific risks might include (re-)recruitment; lack of access to DDR processes; unidentified psychosocial trauma; family or community abuse; stigmatization; and sexual and gender-based violence. Risk monitoring should specifically consider the needs of girls of all ages. Risk monitoring is especially critical when children self-demobilize and return to communities during ongoing conflict. Results should be disaggregated to ensure that girls and other particularly vulnerable groups are considered. Clearly defined coordination and management arrangements are critical to ensuring a child-sensitive approach for DDR processes, particularly given the complexity of the process and the need for transparency and accountability to generate community support. DDR processes for children involve a number of agencies and stakeholders (national and international) and require comprehensive planning regarding how these bodies will coordinate and report. The opportunity for children to be able to report and provide feedback on DDR processes in a safe and confidential manner shall be ensured. Moreover, an exit strategy should feature within a coordinated approach. Needs assessments, information management and response monitoring arrangements must be central to any planning process. The needs of boy and girl CAAFAG are multifaceted and may change over time. A robust needs assessment and ongoing monitoring of the reintegration process for children is essential to minimize risk, identify opportunities for extended support and ensure the effective protection of all children \u2013 especially vulnerable children \u2013 involved in DDR. Effective information management should be a priority and should include disaggregated data (by age, sex, ethnicity, location, or any other valid variable) to enable DDR practitioners and child protection actors to proactively adapt their approaches as needs emerge. It is important to note that all organizations working with children should fully respect the rights and confidentiality of data subjects, and act in accordance with the \u201cdo no harm\u201d principle and the best interests of children. Case management systems should be community-based and, ideally, fit within existing community-based structures. Case management systems should be used to tailor the types of support that each child needs and should link to sexual and/or gender-based violence case management systems that provide specialized support for children who need it. Because reintegration of children is tailored to the individual needs of a child over time, a case management system is best to both address those needs and to build up case management systems in communities for the long term. Reintegration opportunities and services, including market analysis are critical to inform an effective response that supports the sustainable economic reintegration of children. They should be used in conjunction with socioeconomic profiles to enable the development of solutions that meet market demand as well as the expectations of child participants and beneficiaries, taking into account gendered socio-cultural dynamics. See IDDRS 5.30 on Youth and DDR, sections 7 and 8, for more information. Operational capacity and arrangements to deliver reintegration outcomes and ensure protection are essential to DDR processes for children. Plans should be put in place to enhance the institutional capacity of relevant stakeholders (including UN agencies, national and local Governments, civil society and sectors/clusters) where necessary. Negotiation capacity should also be considered in situations where children continue to be retained by armed forces and groups. The capacity of local service providers, businesses and communities, all of which will be directly involved on a daily basis in the reintegration process, should also be supported. Contingency plans, linked to the risk analysis and monitoring system, should be developed to ensure that DDR processes for children retain enough flexibility to adapt to changing circumstances.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "adf512a9-1e3c-4f9a-882f-96134324169e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.3 Data Data is critical to the design and implementation of DDR processes for children. Information on a child\u2019s identity, family, the history of their recruitment and experience in their armed force or group, and their additional needs shall be collected by trained child protection personnel as early as possible and safely stored. All data shall be sex-disaggregated to ensure that DDR processes are able to effectively respond to gendered concerns.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "8d3e1b43-9a0b-4765-aa8c-69c243dc173b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.3.1 Data collection\t Information collected from CAAFAG shall be used only to deliver services to children and to design and implement child- and gender-sensitive DDR processes. Other actors often try to obtain actionable military or intelligence information on armed opposition groups from demobilized children or may interrogate children as they view them as threats. Such actions could amount to a violation of child rights, as it places children in danger and may undermine the release process. The Paris Principles (Article 7.25) expressly state that \u201cinterviews should never be conducted to collect information for military purposes.\u201d In addition, Security Council resolution 2427 (2018) states that CAAFAG are to be treated as victims of violations of international law. A commitment shall be obtained from Governments that children will be handed over to civilian child protection authorities as soon as possible and that military information will not be sought from them under any circumstances. Where interviews are necessary for legitimate purposes, as few individuals as possible should interview children to eliminate risks and harms that stem from repeated interviewing. Interviewers shall be trained child protection actors skilled in interviewing children. The Security Council has expressed \u201cgrave concern at the use of detained children for information gathering purposes.\u201d (UNSCR 2427, OP 20) Therefore, interviews with CAAFAG shall be carried out with the utmost concern for the child\u2019s privacy, dignity and confidentiality. Those providing information (children and caregivers) shall be fully informed about the purpose of the information gathering, how the information will be used and how it will be kept confidential. Voluntary and informed consent shall be required before proceeding with any interview and the child shall be informed that he or she may stop the interview at any time without any need to give a reason. Child protection agencies and/or safeguarding personnel shall provide support, guidance and direction for such interviews. If no parent or guardian is available, a trusted adult shall be provided during any interview and undertake the role of protecting the child\u2019s interests. Interviews shall be conducted in the mother tongue of the child at the pace that he or she sets. Questions shall be posed in child-friendly and age-appropriate language and be rephrased if necessary, and information received clarified. Some information can be sensitive, and the children who provide it may be subject to threats. As children are usually aware of the threats they face, they may provide misleading information to try to protect themselves. These fears shall be identified and measures to deal with them shall be developed. Security should be a key concern and informed by a security risk assessment. During interviews, staff shall pay attention to, and have plans to safeguard children from, anyone who may intimidate or threaten them. Interviews with children shall be carried out in a safe place. If the child wishes to stop the interview, or begins to display signs of distress, the interview shall be stopped immediately. To safeguard the child and the interviewer, no adult shall conduct an interview alone with the child; mixed gender teams shall be provided. No child shall be subject to pressure, coercion, manipulation, including promises, or to any other physical, emotional or psychological tactics to obtain information.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "5314d341-f68e-46ac-84f4-b2337a3ed704", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.3.2 Data management Effective and secure data management is an important aspect of DDR processes for children as, beyond ethical considerations, it helps to create trust in the DDR process. Data management shall follow a predetermined and standardized format, including information on roles and responsibilities, procedures and protocols for data collection, processing, storage, sharing, reporting and archiving. Rules on confidentiality and information security shall be established, and all relevant staff shall be trained in these rules, to protect the security of children and their families, and staff. Databases that contain sensitive information related to children shall be encrypted and access to information shall be based on principles of informed consent, \u2018need to know\u2019 basis, \u2018do no harm\u2019 and the best interests of the child so that only those who need to have access to the information shall be granted permissions and the ability to do so. 6.3.3 Gender responsive and transformative", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "1d6949f1-c02a-46eb-8adc-982f9934fa7c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The specific needs of girls and boys shall be fully considered in all stages of DDR processes. A gender-transformative approach should be pursued, aiming to shift social norms and address structural inequalities that lead girls and boys to engage in armed conflict and that negatively affect their reintegration. Within DDR processes, a gender-transformative approach shall focus on the following: Agency: Interventions should strengthen the individual and collective capacities (knowledge and skills), attitudes, critical reflection, assets, actions and access to services that support the reintegration of girls. Relations: Interventions should equip girls with the skills to navigate the expectations and cooperative or negotiation dynamics embedded within relationships between people in the home, market, community, and groups and organizations that will influence choice. Structures: Interventions should address the informal and formal institutional rules and practices, social norms and statuses that limit options available to girls and work to create space for their empowerment.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6289d86f-7a8f-4f72-a982-d6137285c7da", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The inclusion of girls in DDR processes is central to a gender-transformative approach. CAAFAG are often at great risk of gender-based violence, including sexual violence, and hence may require a range of gender-specific services and programmes to support their recovery. Children, especially girls, are often not identified during DDR processes as they are not always considered to be full members of an armed force or group or may be treated as dependents or wives. Furthermore, DDR practitioners are not always properly trained to identify girls associated with or formerly associated with armed forces and groups and cater to their needs. Often, girls who informally leave armed forces or groups do so to avoid stigmatization or reprisal, or because they are unaware that they have the right to benefit from any kind of support. For these reasons, specific mechanisms should be developed to identify girls formerly associated with armed forces and groups and inform them about the benefits they may be entitled to through child-sensitive DDR processes. In order not to put girls at risk, this must be done in a sensitive manner, for example, through organizations and groups with which girls are already involved, such as health care facilities (particularly those dealing with reproductive health), religious centres and organizations that assist survivors of sexual violence (see IDDRS 5.10 on Women, Gender and DDR).", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "f7395fd8-4d01-442d-92cb-f5396513c66f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "As a key element, a gender-transformative approach should also engage boys, young men, and the wider community so that girls may be viewed and treated more equally by the whole community. It should also recognize that boys and men may also become associated with armed forces and groups due to expectations about the gender roles they should perform, including roles as protector and bread winner even at young ages, particularly where a father has died or is missing, and about social norms that promote violence and/or taking up arms as acceptable or preferred measures to resolve problems. This community-based approach is necessary to help promote the empowerment of girls by educating traditional patriarchal communities on gender equality and thus work towards countering harmful gender norms that enable violence to flourish. Other gender transformative approaches critical for boys include:", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "1cbe9398-5528-4b59-bba8-8d136fcc2a6f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Non-violent forms of masculinities: Often through socialization into violence or through witnessing the use of violence while with armed forces and groups, boys may develop an association of violence through social norms surrounding masculinity and social recognition. Such associations may in turn lead to the development of anti-social behaviour towards themselves, to girls or vulnerable groups, or to community. Supporting boys in deconstructing violent or militarized norms about masculinity is an essential part of breaking the cycle of violence and supporting successful reintegration. This may also involve supporting emotional skill development, including understanding and working with anger in a healthy way.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e4c909c6-20f6-4b3f-8b0c-4046bf7bff1c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Gender-Equitable Relations and Structures: The ideology, structure and treatment of women or girls in armed forces and groups may have led to the development of non-equitable views regarding gender norms, which may affect notions of what \u2018consent\u2019 is. Supporting equitable norms, views, and approaches to being in relationship with girls, and cultivating respect for agency and choice of girls and women, is critical to supporting boys formulate healthy norms and relationships in adulthood.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "d49e7844-aed7-4d45-8997-5aad918819b5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A gender-transformative approach should also ensure that gender is a key feature of all DDR assessments and is incorporated into all elements of release and reintegration (see IDDRS 3.10 on Integrated Assessments).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e4866f20-f3fd-4c2c-a781-e37d4ed74c4a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "7. Prevention of recruitment and re-recruitment of children The factors that lead to children associating with armed forces and groups are complex, and usually involve a number of push and pull factors specific to each child and their wider environment. Understanding the recruitment pathways of children into armed forces and groups is important for development of effective (re-)recruitment prevention strategies and can influence reintegration programming. For example, in some instances of forcible recruitment, new members are required to engage in violence against their family and community to reduce the incentive to escape. This can make their reintegration and community acceptance particularly difficult. Prevention efforts should start early and take place before and continuously throughout armed conflict. Furthermore, these efforts should recognize that children are embedded in families and communities, and programmes must target each part of their ecosystem. Prevention efforts should be based on an analysis of the dynamics of recruitment and its underlying causes and include advocacy strategies that are directed at all levels of governance, both formal and informal. Government ministries, child focused non\u00adgovernmental organizations, DDR practitioners and child protection actors should monitor and analyse information on the recruitment of children to understand recruitment patterns.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "1d9f098a-657c-47d9-a235-18980e42d975", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "To prevent the (re-)recruitment of children as part of DDR processes, various risk factors should be analysed at the structural, social and individual levels (see Table 1 below). Special focus shall be given to children at the most risk of recruitment. Some children are particularly vulnerable to (re-)recruitment because of inadequate protection, such as children living in conflict zones, child refugees or those who have been internally displaced, unaccompanied children, orphans or those separated from their families, children in child- or female-headed households, and children with very young parents. Girls and boys are at greater risk of being recruited in certain locations, such as zones of intense conflict; areas frequently crossed by troops; and public places with concentrations of children such as markets, schools, refugee camps or camps for internally displaced persons, and places where children go to fetch wood or water. Child recruitment is not always a sudden occurrence, but can take place gradually, progressing from initial contact to formal association. Children may start with occasional visits to the camps of armed forces or groups to look for food, polish shoes or carry out other tasks. Increasingly, they are given more responsibilities, then they may seek shelter at these camps, and eventually they start to take part fully in military life. Preventing this kind of \u2018voluntary\u2019 recruitment is a particular challenge and engagement is needed to sensitize communities on the risks of children having contact and forming associations with an armed force or group, even if it appears harmless. It is also important that the identification and documentation of (re-)recruitment risk considers aspects of child agency that may make children more vulnerable to recruitment. While forcible recruitment remains an issue, most children are recruited through the manipulation of their economic, social, political and/or psychological vulnerability.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6f14e8cc-e7e7-4e44-94ad-f3ec1d02a28e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "The most effective way to prevent child (re-)recruitment is the development and ongoing strengthening of a protective environment. Building a protective environment helps all children in the community and supports not only prevention of (re-)recruitment but effective reintegration. To this end, DDR practitioners should jointly coordinate with Government, civil society, and child protection actors involved in providing services during DDR processes to strengthen the protective environment of children in affected communities through:", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5d8ee25a-5db3-451f-a5bf-1c98e63ce1fc", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Efforts should be made to strengthen family resilience, especially in assisting parents to cope with wartime stress, including through access to mental health support and parenting classes, and to minimize the risks of negative family coping behaviours (e.g., child neglect, domestic violence, child marriage and parental discord). Parents also have a role to play to build resilience in their children and educate them on the risks of recruitment. This may include informing them about recruiting efforts on the internet and social media, if they play a key role in driving the conflict. Parents should also be supported to counter gender-based societal expectations of boys as fighters and girls as \u2018bush wives\u2019.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "8cf44e02-3a22-4147-ae89-7bb5d04b7657", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Working with communities to help them better understand why children might join armed forces and groups, explain the developmental effects of child recruitment, and identify how to protect children will all help to prevent (re-)recruitment. Communities should be encouraged to establish community\u00adbased child protection networks. These networks can work on awareness-raising, good parenting skills, identifying at-risk children and mediating family disputes (where appropriate and with training). Where appropriate, these networks can be supported to establish community monitoring mechanisms, such as early warning systems. Non-individually identifiable data from these early warning systems can then be shared with national human rights commissions, national observatories and/or Government authorities.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6734cb06-f780-482a-96f5-a4d0aa2c9b00", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "In addition, where appropriate, children may be included in community violence reduction (CVR) programmes, consistent with relevant national and international legal safeguards, including on the involvement of children in hazardous work, to ensure their rights, needs and well-being are carefully accounted for (see section 8.4 below and IDDRS 2.30 on Community Violence Reduction).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b135dc99-8e12-4c7f-b9b6-4e98e2274a60", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "An important way to prevent child recruitment into armed forces and groups can be to address the underlying socioeconomic factors that cause children to be vulnerable to (re-)recruitment. Investment in education and broader economic development and employment opportunities may help. Investment in basic service delivery, necessary community infrastructure and key markets at the local level can also support community initiatives to prevent (re-)recruitment. Socioeconomic prevention methodologies should be linked \u201ccoherently and as early as possible to national and sectoral frameworks and policies for peacebuilding, recovery and development where they exist at the country level.\u201d", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "840c3742-6fa0-439c-8e9f-f77011ef9f0e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Adult members of armed forces and groups shall be sensitized regarding child rights, including rights of girls. Taking this action contributes to a protective environment, as it removes justifications for recruitment of children.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "103a2e5d-32e6-477a-8a26-55004794f3a3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Advocacy shall also be directed towards national decision makers, as this can raise awareness of the recruitment and use of children in armed conflict and can lead to the introduction of new laws. Advocacy may include measures towards the ratification and implementation of international legal instruments on child protection, or the reinforcement of these legal instruments; the adaptation of laws related to the recruitment and use of children in armed conflict; and the end of impunity for those who recruit and/or use children in armed conflict. It should also include laws and policies that protect children against forms of child abuse, including gender-based violence, that are sometimes among the factors that prompt children to join armed forces and groups. After enactment, appropriate sanctions can be implemented and enforced against people who continue to recruit children.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "75aff96d-5b81-4a26-83f7-20b5e50593b2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "A strong awareness of the existing legal framework is considered central to prevention strategies, but international norms and procedures alone do not restrain armed groups. Awareness campaigns should be followed up with accountability measures against the perpetrators. However, it should also be recognized that punitive approaches intended to strengthen prevention down the line can also have unintended consequences, including armed groups actively hiding information about children in their ranks, which may make military commanders more reluctant to enter DDR processes (see IDDRS 6.20 on DDR and Transitional Justice).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "6b67d6c0-8ef6-4886-b8ad-c521e6f1515b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Monitoring and reporting on the (re-)recruitment of children is an important component of prevention and should be given adequate investment in terms of resourcing, capacity, safety and time. The UN mandated monitoring and reporting mechanism (MRM) on grave violations of child rights in situations of armed conflict, including their recruitment and use, is a comprehensive system for collecting, verifying and reporting on such violations (UNSCR 1612 (2005)). The MRM is designed \u201cto provide for the systematic gathering of accurate, timely, objective and reliable information on grave violations committed against children\u201d within the context of armed conflict that will enable responses to increase compliance with international legal obligations and to end and prevent violations. Where the MRM has been activated, engagement with parties to the conflict to develop action plans to eliminate recruitment and use of children can both lead to release of children in the ranks of armed forces or groups and provide opportunities to prevent future (re-)recruitment (see section 5.3). Where possible and safe to do so, DDR processes should support engagement with armed forces and groups and be part of verification of compliance with such action plans, including commitments to release children.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ccbb56d1-0947-4092-b156-ada111e02c6b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Any activities should adhere to mandatory reporting laws on child abuse or gender-based violence against children, regardless of whether an MRM has been activated. Practitioners should be clear about what these laws are, be sure that children understand any mandatory reporting nationally and provide informed consent if relevant. Referral pathways for necessary response services should be available before engaging with survivors so that referrals can be made in the event of a disclosure. In addition, where relevant and safe, there should be coordination, harmonization and cross checks with the Monitoring and Reporting Arrangement (MARA) of the Conflict Related Sexual Violence (CRSV). CRSV takes multiple forms such as rape, forced pregnancy, forced sterilization, forced abortion, forced prostitution, sexual exploitation, trafficking, sexual enslavement, forced circumcision, castration, forced nudity or any other form of sexual violence of comparable gravity. Depending on the circumstances, it could constitute a war crime, a crime against humanity, genocide, torture or other gross violation of human rights. See definition of CRSV: Analytical and Conceptual Framing of Conflict-related Sexual Violence, June 2011.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "984333a6-8792-44d0-84fc-d15bbad6a46e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8. Child-sensitive approaches to DDR When designing and implementing DDR processes for CAAFAG, DDR practitioners and child protection actors must tailor support to the individual child and root them in community-based approaches and structures. Individualized interventions recognize that there important differences between children based on age; from those who may appear to have voluntarily joined an armed force or group and those who have been obviously forced to do so; from those who have made decisions and been given leadership or other responsibilities when they were members of armed forces and groups and those who have been slaves; and from those who have a family waiting for them and those who cannot or wish not to return, etc. Not all children will require the same level of attention, the same approach, or the same support. Some children (e.g., girl mothers, child heads of households, etc.) may have current responsibilities that require training support for immediate employment. Workable ways of addressing each child\u2019s situation should be developed. However, it is critical that support to CAAFAG be provided through broader holistic community-based strategies and approaches, that target CAAFAG as well as other children in conflict-affected communities. Providing similar services and reintegration support that benefit children within the wider community will mitigate against the risk of resentment, while also serving as a prevention tool that can build community resilience and address some of the underlying factors that contribute to the (re)recruitment of children into armed forces and groups.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "d5c8c25f-3973-4d4c-bac1-a92635a73d1c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 26, - "Paragraph": "8.1 Disarmament Disarmament may represent the first sustained contact for CAAFAG with people outside of the armed force or group. This can be a difficult process, as it is often the first step in the transition from military to civilian life. As outlined in section 4.2.1, CAAFAG shall be eligible for DDR processes for children irrespective of whether they present themselves with a weapon or ammunition and irrespective of the role they may have played. Children with weapons and ammunition shall be disarmed, preferably by a military or government authority rather than a DDR practitioner or child protection actor. They shall not be required to demonstrate that they know how to use a weapon. CAAFAG shall be given the option of receiving a document certifying the surrender of their weapon or ammunition if there is a procedure in place and if this is in their best interests. For example, this would be a positive option if the certificate can protect the child against any doubt over his/her surrender of the weapon/ammunition, but not if it will be seen as an admission of guilt and participation in violence in an unstable or insecure environment or if it could lead to criminal prosecution (see IDDRS 4.10 on Disarmament).", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "70a67dc9-b2a5-4202-ba44-073a51b2348c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Transition from military to civilian life may be difficult for CAAFAG because, in spite of the hardships they may have experienced during their association, they may also have found a defined role, responsibility, purpose, status and power in an armed force or group. For children who have been in an armed force or group for many years, it may at first seem impossible to conceive of a new life; this is particularly true of younger children or CAAFAG who have been indoctrinated to believe that military life is best for them and who know nothing else.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "36815bbe-ef13-4228-97a6-54ace4f34116", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "DDR practitioners must work together with child protection actors to prioritize physically removing CAAFAG from contact with adult combatants. Removing CAAFAG from armed forces and groups should be done in a responsible but efficient way. Symbolic actions \u2013 such as replacing military clothing with civilian clothing \u2013 can aid this adjustment; however, such actions must be clearly explained, and the child\u2019s welfare must be paramount. Providing civilian documentation such as identity papers may be symbolic but also practical as it may allow the child to access certain services and therefore ease the child\u2019s reintegration. Children need immediate reassurance that there are fair and realistic alternatives to military life and should receive information that they can understand about the benefits of participating in DDR processes as well as the different steps of the process. However, under no circumstances should interviewers or practitioners make promises or give assurances that they are not absolutely certain they can deliver.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "1b89966c-6814-4db1-96f2-60192c6c319c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Official documentation marking demobilization may help to protect children from abuse by authorities or armed forces and groups that are still active. However, staff should establish that such documents cannot be seen and will not be used as an admission of guilt or wrongdoing. Official identification documents certifying that a child has demobilized can be provided when this protects children from re-recruitment and assures their access to reintegration support. Civilian documents proving the identity of the child with no mention of his/her participation in an armed force or group should be made available as soon as possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "51907ca2-35db-4684-8ea8-a5017c76b12f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Depending on the specific DDR process in place, demobilization may occur at semi-permanent military-controlled sites (such as cantonment sites), reception centres or mobile demobilization sites (see IDDRS 4.20 on Demobilization). When reporting to such sites, the time CAAFAG spend at the site shall be as short as possible, and every effort shall be made to rapidly identify them, register them and supply them with their immediate needs. Where possible, children should be identified before arrival at the demobilization site so that the documentation process (identification, verification, registration, medical needs) and other applicable procedures last no longer than 48 hours, after which they shall be transferred to an interim care centre (ICC) for children or to another location under civilian control. If CAAFAG report or are brought to mobile demobilization sites or reception centres, standard operating procedures shall be in place outlining when and how the handover to civilian authorities will take place.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f33459b1-e35c-4e16-bb06-3fe64d157065", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "At all demobilization sites, semi-permanent or otherwise, particular attention shall be given to the safety and protection of children during their stay, through measures such as proper lighting, regular surveillance and security patrols. Children shall be physically separated from adult combatants, and a security system shall be established to prevent adult access to them. Girl mothers, however, shall not be separated from their children. Separate accommodation must be provided for boys and girls, including separate washing and toilet facilities, with specific health services provided when necessary (e.g., reproductive health services and hygiene kits adapted to specific needs). Female staff shall be provided for locations where girls are staying.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "23130a8b-934f-4ef7-b216-2c4be8bf0b24", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Since a number of girls are likely to be mothers, demobilization sites shall also be designed to provide proper food and health care for infants and young children, with childcare assistance provided for mothers unable to care for their children. Demobilization sites must, without exception, provide medical health screening, including sexual health screening to all children, and provide necessary treatment. Efforts shall be made to improve the overall health of CAAFAG through early detection, immunization, treatment of severe conditions (such as malaria and acute respiratory infections), treatment for wounds and injuries, triage and referral of serious cases to secondary/tertiary facilities (see IDDRS 5.70 on Health and DDR).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "0ed01057-6305-4432-abdb-4a11f60b2127", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children shall be informed that they have the right not to be abused or exploited including the right to protection from sexual exploitation and abuse, and child labour, and that they have the right and ability, through adapted and efficient reporting and complaints mechanisms, to report abuse. When children do report abuse or exploitation by adult former combatants, staff or adult caregivers, they shall not be stigmatized or made to feel disloyal in any way. Their complaints must also be acted upon immediately through child-friendly mechanisms designed and put in place to protect them from such exploitation and to punish the offenders to the fullest extent possible. If children reporting abuse request such a service, they shall be given space and time to share their emotions and reflect on their experiences with health workers trained in psychotherapeutic assistance. Mechanisms shall be established to prevent offending staff from working with children in similar situations in the future (see also section 4.10.1).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "a18a3246-3091-40a1-8db8-7b7257dee0f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Children are particularly vulnerable when their physical protection is no longer secure, including during troop movements between camps and demobilization sites. Sufficient, appropriate and secured means of transportation shall be planned in order to transport children in the shortest time possible, and they should be accompanied by civilian child protection staff. Children shall be informed, clearly and in advance, of all movements arranged for them. Family accompaniment during transport should be encouraged where possible, as this will promote community acceptance.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "30e53223-7e0a-45b4-822b-d3aed5a01fc6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "8.3. 1 Interim care centres Interim care centres are not necessary in all DDR processes for children, especially when the placement of a child in an ICC delays family and community reunification. However, ICCs can be used as a last resort, as they provide a secure space that may help children sever their links with armed forces and groups; allow time for family tracing, verification and, if necessary, gradual reunification (see section 7.4); enable medical support to be provided, including mental health and psychosocial support; and provide an opportunity for pre-discharge awareness-raising/ sensitization. ICCs are not the same as cantonment sites. ICCs shall be child-friendly and their management and services consistent with the Alliance for Child Protection in Humanitarian Action\u2019s Minimum Standards and the Guiding Principles in Interim Care Planning and Provision for community-based interim care. The best interests of the child shall be a primary consideration. Factors of necessity and appropriateness shall also be considered with the aim that a child will be placed into an ICC only if there is no other family- or community-based interim care available, and any placement will be for the shortest period necessary. Staffing levels for ICCs shall depend on the number, ages and needs of children in the facility. Their care and protection should be paramount, with an emphasis on reuniting children with their families or providing alternative community-based care solutions as swiftly as possible (see Annex C for more details). While security of the facility is a key concern, ICCs shall remain child-friendly and not inadvertently transform into detention facilities. Adults shall not be accommodated at ICCs, and children accommodated at these centres should be grouped according to age (unless they are girl mothers). Tracing, verification, reunification, case management and monitoring should be carried out at ICCs to facilitate the return of children to their communities (including community outreach). Health check-ups and specialized health services should be provided \u2013 for example, reproductive health and antenatal services, diagnosis of sexually transmitted infections, and voluntary and confidential HIV testing and counselling \u2013 while nutritional deficiencies and war-related injuries should receive treatment. Children should receive counselling, including help to overcome distress or trauma, develop self-esteem and learn life skills; learn about reintegration and livelihood opportunities, as well as information about child labour; and receive peace education and training in non-violent conflict resolution to help them regain a sense of the social norms and routines of civilian life. Sports, cultural and recreational activities should be provided to keep children occupied and help them build trust, but there should be no formal education or training activities within the ICC apart from assessments of literacy and numeracy. Formal education and training should be provided within the community. Children should be transferred as quickly as possible to their communities, consistent with their best interests, for reintegration into communities, education, and social cohesion activities with all children as well as any community-based case management support needed. Where return is not possible, family and community-based solutions should be sought.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6d32dd8d-b5fd-4a70-949e-f49e2b04f618", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 29, - "Paragraph": "8.3.2 Interim care placements Interim care placements should be used in cases where ICCs are not available or appropriate (for example, when a child is already in the community) and when family unification is not possible or in the best interests of the child. These types of placements can include community-based care, fostering or guardianship. The Inter-Agency Guiding Principles on Unaccompanied and Separated Children (2004) provide clear guidelines on how interim care placements should be conducted. Furthermore, community-based temporary alternative care must be consistent with the United Nations Guidelines for Alternative Care (General Assembly resolution 64/142).", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "50b28ae3-04a9-421f-9333-db39a8ccd93f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 29, - "Paragraph": "8.4 Community violence reduction DDR processes increasingly include CVR programmes in an effort to reduce armed violence and sustain peace (see IDDRS 2.30 on Community Violence Reduction). Specific provisions shall be developed to ensure the protection, care and support of young people (aged 15\u201324) who participate in CVR programmes (see IDDRS 5.30 on Youth and DDR). Where appropriate, children (under 18) may be included in CVR activities, but with relevant legal safeguards to ensure their rights and needs are carefully accounted for.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "913de38a-dccf-4abb-8ac4-0ea5e4708285", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.5 Reintegration The purpose of reintegration support is to provide children with assistance that has been tailored to their needs and that provides them with a viable, long-term alternative to military life. Reintegration support provided to children shall take into account differences in age, sex, individual resilience, the capacity of the child to make informed decisions, the length of stay and individual experience with an armed force or group, culture, the reintegration opportunities in an environment that will have changed in the child\u2019s absence and other relevant factors. Reintegration support should be individualized, targeting CAAFAG as well as other at-risk, vulnerable or conflict-affected children, as well as community-based, utilizing strategies and approaches that empower communities to accept and receive CAAFAG and support their reintegration. Because reintegration of adult ex-combatants and persons formerly associated with armed forces and groups should be considered even in the absence of a DDR programme, reintegration programmes of adults and children can mutually reinforce each other and where relevant and safe to do so should be coordinated as much as possible. (see IDDRS 2.40 Reintegration as Part of Sustaining Peace, and IDDRS 4.30 on Reintegration).", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2f1d5315-2845-4bca-a1b2-d11e38708d40", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 30, - "Paragraph": "8.5.1 Health CAAFAG face a range of health issues that may impact their reintegration. The identification of health needs shall begin when the child first comes into contact with a DDR process, for example, at a reception centre or cantonment site or an interim care centre. However, ongoing health needs shall also be addressed during the reintegration process. This may be via referral to relevant local or national health facilities, medical fee coverage or the direct provision of support. All service and referral provision shall be private and confidential. Reproductive health As soon as possible after their release from an armed force or group, and for as long as necessary, girls and boys who have survived sexual violence, abuse and exploitation shall receive medical care in addition to mental health and psychosocial care (see section 7.9.1). Consideration shall also be given to boys who may have been forced to perpetrate sexual violence. All children who have experienced sexual violence shall receive access to the Minimum Initial Service Package (MISP) for sexual and reproductive health. Girl mothers shall be referred to community health services and psychosocial support as a priority. To prevent cycles of violence, girl mothers shall be enabled to learn positive parenting skills so that their children develop in a nurturing household. DDR practitioners should invest in reproductive health awareness-raising initiatives for boys and girls (especially adolescents) covering issues such as safe motherhood, sexual violence, sexually transmitted infections, family planning and the reproductive health of young people. Increasing the awareness of boys will help to reduce the reproductive health burden on girls and enable a gender-transformative approach (see section 4.3). Consideration shall be given to any sensitivities that may arise through the inclusion of boys in these awareness-raising initiatives, and necessary preparations shall be made with families and community leaders to gain their support. HIV/AIDS Children who test positive for HIV/AIDS may experience additional community stigmatization that negatively impacts upon their reintegration. Initial screening and testing for HIV/AIDS shall be provided to CAAFAG during demobilization in a manner that voluntary and confidential. During reintegration, support for children living with HIV/AIDS should include specialist counselling by personnel with experience of working with children, support to families, targeted referrals to existing medical facilities and linkages to local, national and/or international health programmes. To ease reintegration, community-based HIV/AIDS awareness training and education can be considered (see IDDRS 5.60 on HIV/AIDS and DDR). Children may also prefer to receive treatment in locations that are discreet (i.e., not in public spaces or through discreet entrances at clinics). Drug and alcohol addiction Drugs and alcohol are often used by commanders to establish dependence, manipulate and coerce children into committing violence. Children\u2019s substance use can create obstacles to reintegration such as behavioural issues in the home and community, risk-taking behaviour, poor nutrition and general health, and increased vulnerability to re-recruitment. DDR practitioners should coordinate with child-focused local, national and/or international health organizations to develop or identify for referral drug and alcohol rehabilitation programmes adapted to the needs of CAAFAG. Treatment shall follow the International Standards for the Treatment of Drug Use Disorders.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "634a4b9e-2ec9-4c79-82fb-392d43d4da4e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 31, - "Paragraph": "8.5.2 Mental health and psychosocial support and special care Mental and psychosocial health is critical to effective reintegration for all age groups; however, children face specific challenges that can seriously undermine their return to civilian life. Some children may have mental health or psychosocial needs when they re-enter their communities due to their experiences during conflict, the tremendous effort required to adapt to being back in civilian life, anxiety and uncertainty, stigmatization, fear of being rejected, poverty and a lack of livelihood. Mental health and psychosocial support should be offered (dependent on individual need and resources) to help children develop new patterns of behaviour, improve their self-esteem, develop their capacity to make decisions about the future and enable them to express emotions should they want to do so. Children and communities, with support, do have the capacity to cope with the distress caused by war. Mental health and psychosocial support activities should build on children\u2019s natural resilience and family and community support mechanisms and encourage coping and positive development. A community-based case management system should be active for children who require individualized mental health support. This system should be available for all children in the community who may be in need. Some children may need specific mental health or psychosocial assistance to overcome particularly negative or harmful experiences during their stay with an armed force or group. Boys and girls who have experienced sexual violence, including when of a prolonged nature, may face significant psychosocial issues affecting their reintegration \u2013 for example, an inability to trust adults, aggression and social withdrawal. Those living with injury and disability and the terminally ill, in particular, require care that is adapted to their needs and environment. Mental health and psychosocial support interventions for children in DDR processes shall abide by the following core principles: Human rights and equality: Focus on the protection of children most at risk of human rights violations and the promotion of equity and non-discrimination, maximizing fairness across all sub-groups of children. Equality in provision of support includes taking into consideration and tailoring support to the specific, and different needs, of boys and girls. Participation: Ensure the participation of children in decisions affecting them to support their resilience and promote the participation of families and communities, as they are the most important support structures for children\u2019s psychosocial health. Do no harm: Minimize the risk of harm to children through psychosocial support by employing good coordination (with families, communities and other actors), appropriate needs assessments, cultural sensitivity, and ongoing monitoring and reflection on approach. Build on available resources and capacities: Engage with existing structures and self-help mechanisms to root the intervention in local solutions. Integrated support systems: Integrate into wider systems (e.g., existing community support mechanisms, formal/non-formal school systems, general health services, general mental health services, social services) to reach more people (community-based approaches) and limit stigma. Multilayered supports: A layered system of complementary supports is most effective in meeting different needs: Basic services and security: Securing basic needs (food, shelter, water, basic health care) and ensuring a minimum level of security represent the first steps in mental and psychosocial well-being. Community and family supports: Most children will require some level of family/community support to address psychosocial disruption. This may include communal healing ceremonies, supportive parenting programmes, formal and non-formal educational activities, livelihood activities and the activation of social networks. Focused, non-specialized supports: More-affected children will require interventions by trained and supervised personnel in areas such as psychological first aid and basic mental health care by primary health-care workers. Specialized services: Targeting the most affected children who exhibit serious mental health and psychosocial symptoms and require either (a) referral to specialized services, if they exist, or (b) initiation of longer-term training and supervision of primary/general health-care providers. Each context requires a specific approach to mental health and psychosocial support. However, Annex D provides some generalized do\u2019s and don\u2019ts for planning mental health and psychosocial support interventions. The guidelines for psychosocial support set out in IDDRS 5.30 on Youth and DDR are also applicable to children, although specific considerations for age should be made.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "be442db0-f056-418e-a4c5-b6467e256090", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 32, - "Paragraph": "8.5.3 Family tracing and reunification Following the release of children from armed forces and groups, efforts should be made to reunify children with their families, whenever possible and in their best interests. Family tracing and reunification shall be based on the Inter-Agency Guiding Principles on Unaccompanied and Separated Children. Family reunification is not simply a matter of returning a child to his or her family, but requires preparation, mediation, and follow-up, possibly including ceremonies of return, to help the family recognize and address problems of alienation, addiction, aggression and resistance to civil forms of authority. Reunification also involves the family in decisions regarding the child\u2019s re-adaptation, education, learning and training. Children need to be reassured that their families want them back and accept them as they now are. Assistance should not only consist of material aid, but also include social support and follow-up. Family tracing should be started at the earliest possible stage and can be carried out at the same time as other activities. Family reunification will follow after mediation and an assessment of the situation that is quick, but thorough enough to be sure that there is no threat or discomfort to the child. Children can feel worried about returning to their family or community because of acts they may have committed when with armed forces or groups, or for any number of other reasons (e.g., girls may have been victims of sexual violence, abuse or exploitation, and may feel especially trepidatious if they have children born from those experiences). Phased approaches to reunification may be considered if reunification is determined to be in the best interests of the child but certain challenges exist. For example, there may be family trauma as a result of conflict, or economic conditions may make immediate reunification difficult. These issues may also necessitate ongoing mediation, as well as psychosocial support to the child and family focused initially on the immediate challenge of reunification, but with a longer-term strategy to address more systemic issues. Family-based reintegration and services are crucial to the long-term success of reintegration. Case management may need to include components on support to families such as parenting support or economic support to the adults in the family. In some cases, family reunification may not be in the best interests of the child, because of difficult security or family conditions that do not provide the child with required levels of protection. It must also be recognized that poor family conditions or family connections to armed forces and groups may have been the reason the child was recruited in the first place. If these conditions remain unchanged, children are at risk of being re-recruited. When family reunification is not in the best interests of the child, for whatever reason, the aforementioned Guidelines for Alternative Care shall be followed.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "06ac9516-5618-4ae4-9fc1-3ea207350592", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 33, - "Paragraph": "8.5.4 Supporting families and communities Families and communities have a critical role to play in the successful reintegration of CAAFAG. After their release, many CAAFAG return to some form of family relationship \u2013 be it with parents or extended family. Others, however, do not return to their family due to fear or rejection, or because their families may have been killed or cannot be traced. Family rejection often disproportionately affects girls, as they are presumed to have engaged in sexual relations with men or to have performed roles not regarded as suitable for girls according to traditional norms. With family acceptance and support, reintegration is more likely to be successful. The process of family reintegration, however, is not always simple. Residual conflict may remain, or new conflicts may emerge due to various stressors. Intergenerational conflict, often a feature of societies in conflict, may be an issue and, as returning children push for voice and recognition, can intensify. Assisting families in the creation of a supportive environment for returning CAAFAG can be achieved through a variety of means and should be considered in all DDR processes for children. This support may take a number of different forms: Psychosocial support to the extended family can help to address broader psychosocial well-being concerns, overcome initial tensions and strengthen the resilience of the family as a whole. Positive parenting programmes can increase awareness of the rights (and needs) of the child and help to develop parenting skills to better support returning CAAFAG (e.g., recognizing symptoms of trauma, parent-child communication, productively addressing negative behaviours in the child). Promotion of parent-teacher associations (development or membership of) can provide ways for parents to support their children in school and highlight parents\u2019 needs (e.g., help with fees, uniforms, food). Income-generating activities that involve or support the whole family rather than only the child can alleviate financial concerns and promote working together. Establishment of community-based child protection networks involving parents can assist in the delivery of early warnings related to recruitment risk, children\u2019s engagement in risk-taking behaviours (e.g., drug or alcohol abuse, unsafe sex) or conflicts among children and youth in the community. Support to associations of families of conflict-affected children beyond CAAFAG can help build awareness in the community of their specific needs, address stigma and provide support in a range of areas including health, income generation, community voice and participation. When supporting families to take a stronger role in the reintegration of their children, it is important that the wider community does not feel that children are rewarded for their involvement with armed forces or groups, or that broader community needs are being neglected. Community acceptance is essential for a child\u2019s reintegration, but preconceived ideas about children coming out of armed forces and groups, or the scars of violence committed against families and/or communities, can severely limit community support. To prevent reprisals, stigmatization and community rejection, communities shall be prepared for returning CAAFAG through sensitization. This sensitization process shall begin as early as possible. Additional activities to help prepare the community include the strengthening of local child protection networks, peace and reconciliation education, and events aimed at encouraging the lasting reintegration of children. Cultural, religious and traditional rituals can play an important role in the protection and reintegration of girls and boys into their communities. These may include traditional healing, cleansing and forgiveness rituals, where they are considered not to be harmful; the development of solidarity mechanisms based on tradition; and the use of proverbs and sayings in sensitization and mediation activities. Care should be taken to ensure that religious beliefs serve the best interests of the child, especially in areas where religion or cultural values may have played a role in recruitment. Reconciliation ceremonies can offer forgiveness for acts committed, allow children to be \u2018cleansed\u2019 of the violence they have suffered or contributed to, restore cultural links and demonstrate children\u2019s involvement in civilian life. Such ceremonies can increase the commitment of communities to a child\u2019s reintegration process. Children should contribute to the creation of appropriate reintegration mechanisms to improve their sense of belonging and capacity. However, it is also essential to understand and neutralize community traditions that are physically or mentally harmful to a child. In addition, such rituals may not be suitable in all contexts. Particular attention should be paid to the information that circulates among communities about returning boys and girls, so that harmful rumours (e.g., about real or presumed rates of HIV/AIDS among them and the alleged sexual behaviour of girls) can be effectively countered. Girls are at highest risk of rejection by their communities, and it is important for programme staff to engage on a continual basis with the community to educate them about the experience girls have had and the challenges they face without fostering pity or stigma. Programme staff should consult with affected girls and include them in the planning and implementation of initiatives, including how their experiences are portrayed, where possible. Specific focus should be given to addressing issues of gender-based violence, including sexual violence. Girls who experience gender-based violence during their time associated with an armed force or group will often face stigmatization on their return, while boys will often never discuss it due to societal taboos. Specific engagement with communities to aid the reintegration of CAAFAG may include: Community sensitization and awareness-raising to educate communities on the rights of the child, the challenges CAAFAG face in their reintegration and the role that the community plays in this process; Community-based psychosocial support addressing the needs of conflict-affected community members as well as CAAFAG and their families; Community-wide parenting programmes that include the parents of CAAFAG and non-CAAFAG and help improve awareness and foster social inclusion and cohesion; Support to community-based child protection structures that benefits the whole community, including those that reduce the risk of recruitment; Investment in child-focused infrastructure rehabilitation (e.g., schools, health centres, child/youth centres) that provide benefit to all children in the community; Community-wide income-generation and employment programmes that bring older children as well as the parents of CAAFAG and non-CAAFAG together and provide much-needed livelihood opportunities; Creation of community child committees that bring together community leaders, parents and child representatives (selected from children in the community, including CAAFAG and non-CAAFAG) to provide children with a platform to ensure their voice and participation, especially in the reconstruction process, is guaranteed; and Advocacy support (including training, resources and/or linkages) to increase the role and voice of communities and children/youth in the development/revision of national child and youth policies, as well as interventions.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0503502e-4041-44e0-902a-f81bf5d7fc31", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 35, - "Paragraph": "8.5.5 Access to Education Education is a critical component of enabling returning CAAFAG to successfully transition into normal civilian routines and helps to prepare them for future opportunities. The higher a child\u2019s level of education, the more likely his/her reintegration is to succeed. DDR processes for children shall therefore support children to try to reach (or recover) as high a level of education as possible, often starting with basic literacy. After a relatively long stay within armed forces or groups, or because of the difficulties they previously experienced in school, children may not be able to adapt to traditional teaching methods. For these situations, schooling programmes should be developed in consultation with the ministry of education that are specifically designed for such children, and that achieve the same results as other formal educational programmes. To better support children who are struggling, teachers should receive specific training. This may include training in recognizing signs of emotional stress, managing problematic behaviour and developing effective pupil-parent relations. Accelerated Education Programmes (AEPs) and other remedial schooling programmes for children who have been out of school for long periods can provide vital catch\u00adup education. An AEP is \u201ca flexible, age-appropriate programme, run in an accelerated timeframe, which aims to provide access to education for disadvantaged, over-age, out-of-school children and youth. This may include those who missed out on or had their education disrupted due to poverty, marginalization, conflict and crisis. The goal of AEPs is to provide learners with equivalent, certified competencies for basic education using effective teaching and learning approaches that match their level of cognitive maturity.\u201d The AEP Working Group details 10 principles for the delivery of accelerated education, as well as key action points, key definitions, essential information, examples and case studies, and indications of challenges and other points to consider. These principles shall be followed by any programme engaging in AEPs. DDR processes for children can further support the education of demobilized CAAFAG through various other means including AEP teacher training; capacity-building of a country training team; provision of teaching and learning materials; provision of school furniture; payment of incentives to AEP teachers; payment of registration and examination fees; and the renovation and rehabilitation of schools, including sanitation facilities. Moreover, modalities should be developed that enable part-time study if this is desirable, and other assistance should be provided to boost attendance (e.g., food, childcare facilities for girl mothers). The aim, wherever possible, should be to integrate returning children into existing education systems. Supporting these systems provides a benefit for the entire community and can help to ease reintegration of CAAFAG. However, even with the assistance of such programmes, some children may not be able to return to the regular school system. In such cases, programmes should be designed to include vocational training activities (skills training and apprenticeships) that are suited to local conditions and markets, and in line with national legislation on minimum working age and working conditions, (see section 7.9.5).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f3e0fdd7-3d05-4bc1-b252-4cf9651a834b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 36, - "Paragraph": "8.5.6 Life skills Life skills are those abilities that help to promote psychological well-being and competence in children as they face the realities of life. These are the ten core life skill strategies and techniques: problem-solving; critical thinking; effective communication skills; agency and decision-making; creative thinking; interpersonal relationship skills; self-awareness building skills; empathy; coping with stress; and emotions. Programmes aimed at developing life skills can, among other effects, lessen violent behaviour and increase prosocial behaviour. They can also increase children\u2019s ability to plan ahead and choose effective solutions to problems. CAAFAG often lose the opportunity to develop life skills during armed conflict, and this can adversely affect their reintegration. For this reason, DDR processes for children should explicitly focus on the development of such skills. Life skills training can be integrated into other parts of the reintegration process, such as education or health initiatives, or can be developed as a stand-alone initiative if the need is identified during demobilization. The inclusion of all conflict-affected children within a community in such initiatives will have greater impact than focusing solely on CAAFAG.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d67dd99e-dbcf-4c8f-b4d2-222513744460", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 37, - "Paragraph": "8.5.7 Vocational training and livelihood development Vocational training opportunities for children shall be realistic in terms of what the local economy can support and shall also reflect the wishes of the child. There should be made available as wide a range of training options as possible, consistent with local market conditions, to help children adapt successfully to civilian life and to what the market demands. This training may build on skills and competencies learned when the child was associated with an armed force or group. A choice of training options beyond traditional areas should be promoted, as should the provision of support to girls (including financial and childcare support, where appropriate). More specifically, vocational and skills training may include: Analysis of livelihood systems, agriculture, market opportunities, and household economies to develop economically relevant training, alternative forms of education and opportunities for economic reintegration. Coordination between stakeholders to improve lessons learned, development of joint programmes, appropriate referrals and measures to avoid inconsistencies in the benefits provided. Community consultation to develop collective initiatives benefiting the community. Business skills training to prepare children to keep accounts and handle money. Apprenticeships and on-the-job training for those with no previous work experience. Life skills training, including basic social norms and civic education, parenting skills, rights at work and home, prevention of HIV/AIDS, and education to counter interpersonal violence. Incorporation of gender-transformative approaches to ensure sensitivity to the particular challenges faced by girls, increase awareness in both girls and boys of the challenges faced by the other gender, and foster positive gender relationships. Development of skills in non-violent conflict resolution and anger management to help CAAFAG in their everyday lives. Provision of childcare and, if necessary, flexible training schedules for girl mothers. Some children need to start earning a living immediately after they return to their family and community and should be helped to earn an income or receive benefits while they obtain training and/or an education. For example, the sale of things they have made, or animals reared during their training may facilitate the purchase of tools or other equipment that are needed for future work. Boys and girls, particularly those of legal working age, should benefit from an adapted version of socioeconomic support programmes designed for demobilized adults (see IDDRS 4.30 on Reintegration). However, income-generating activities for children should be in line with national and international laws on child labour, including ILO convention 138 on minimum age of work. Livelihood options for girls should not be based on traditionally assigned gender roles. Instead, the focus should be on what girls want to do. Linkages to the local business, trades and agricultural communities should be sought and can aid in employment, small business mentoring and ongoing analysis of market needs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "288c8143-5ba7-47cf-bc2b-090644775cac", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 38, - "Paragraph": "8.5.8 Social protection assistance As part of planning and implementing a child-sensitive approach to DDR-related interventions, CAAFAG can be provided with social protection assistance to reduce vulnerability to poverty and deprivation, promote social inclusion and child protection, and strengthen family and community resilience. This may include: Multipurpose cash grants. Commodity (e.g., food or rent) or value vouchers. Family and child allowances. Disability social pensions and benefits. Transfers in exchange for a parent working (cash for work). Transfers in exchange for attending health check-ups (for all family members). Business recovery or start-up grants (for older children or parents of CAAFAG) subject to conditions (e.g., business management training, business plan development, etc.); and Scholarship benefits restricted to certain areas (e.g., school fees, school supplies, etc.). To ensure that assistance is child-sensitive, it must be governed by a number of guiding principles: Assistance must be designed with the child\u2019s best interests in mind and necessary safeguards in place, so that cash or other material assistance does not create incentives or push/pull factors to recruitment of children in the community or re-recruitment of the child and does not draw attention to the child. Assistance must be based on findings from the situation analysis and risk assessments (see sections 6.1 and 6.2). Assistance shall be targeted towards the most vulnerable CAAFAG (for example, girl mothers, persons with disabilities, and separated or unaccompanied minors) and their families. Assistance shall be predictable, allowing households to plan, manage risk and invest in diverse activities. Mixed delivery approaches (individual and community) should be considered, where appropriate, to strengthen conflict sensitivity. Community-based approaches should be promoted when they are likely to reduce resentment, increase community acceptance of returning CAAFAG, result in local economic benefits and strengthen social reintegration outcomes. Focus should be given to assistance that is multisectoral (e.g., health, education, water, sanitation and protection) and that has multiplier impacts. Conditions should be placed on community grants (e.g., training, awareness-raising activities, investment in community-level income-generating activities and benefits for the children of the households engaged). Investment in community structures should be promoted when these structures foster a protective environment for children (e.g., community-based child protection committees and community early warning prevention systems). Risk mitigation strategies shall be developed and implemented to reduce the risk of abuse. For example, it should be ensured that distributors of assistance work in pairs, that post-distribution monitoring is carried out and that children are empowered to speak out about their rights.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "2abb4623-6abf-4023-af02-96cf74e1ba3b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 39, - "Paragraph": "8.5.9 Voice, participation and representation Being recognized, accepted, respected, and heard in the community is an important part of the reintegration process. However, this is a complex issue for children, as they are generally excluded from community decision-making processes. Children may also lack the self-esteem and skills necessary to engage in community affairs usually reserved for adults. Reintegration support should strive to generate capacities for such participation in civilian life. Although political reintegration is generally a feature of adult DDR processes (see IDDRS 4.30 on Reintegration), children also have political rights and should be heard in decisions that shape their future. Efforts should be made to ensure that children\u2019s voices are heard in local-level decision-making processes that affect them. Not only is this a rights-based issue, but it is also an important way to address some of the grievances that may have led to their recruitment (and potential re-recruitment). For children nearing the age of majority, having a voice in decision-making can be a key factor in reducing intergenerational conflict. CAAFAG may face particular difficulties attaining a role in their community due to their past associations or because they belong to communities that were excluded prior to the conflict. Girls, persons with disabilities, or people living with HIV/AIDS may also be denied full participation in community life. The creation of inclusive societies is an issue bigger than DDR. However, the reintegration process provides an opportunity to make an initial investment in this endeavour through potential interventions in several areas. Civic education To make the transition from military to civilian life, children need to be aware of their political rights and, eventually, responsibilities. They need to understand good citizenship, communication and teamwork, and non\u00adviolent conflict resolution methods. Ultimately, it is the child\u2019s behaviour that will facilitate successful reintegration, and preparing a child to engage socially and politically, in a productive manner, will be central to this process. Such activities can prepare them to play a socially useful role that is acknowledged by the community. Special efforts should be made to include girls in civic education training to ensure they are aware of their rights. However, children should not be forced to participate in any activities, nor used by armed or political groups to achieve specific political objectives, and their rights to free speech, opinion and privacy should be prioritized. Ensure child participants in DDR processes have a voice in local and national recovery DDR processes should be aligned with national plans and strategies for recovery, the design of which should be informed by inputs from their participants. The inclusion of conflict-affected children and CAAFAG in these processes enables children to identify and advocate for specific measures of importance with regard to youth and recovery policies. Specific attention should be given to particularly vulnerable groups who may ordinarily be marginalized. Promote the gender transformation agenda Efforts to strengthen the agency of girls will only go so far in addressing gender inequality. It is also important to work with the relationships and structures present that contribute to their (dis)empowerment. It is critical to support the voice and representation of girls within their communities to enable their full reintegration and to contribute to eradication of the structural inequalities that influenced their recruitment. Working with men and boys to address male gender roles and masculine norms that promote violence is required. Build a collective voice An inclusive programme sees community children, particularly those affected by conflict in other ways, participating in programming alongside CAAFAG. This provides an opportunity for children and youth to coordinate and advocate for greater inclusion in decision-making processes. Create children\u2019s committees across the various areas of reintegration programming Children should have the opportunity to put forward their views individually and collectively. Doing so will provide a mechanism to substantively improve programme outcomes and thus ensure the best interests of the child. It also gives greater voice to other vulnerable and marginalized children in the community. Steps should be taken to ensure that girls, and especially girl mothers, are included in these committees. Encourage the participation and visibility of programme beneficiaries in public events Greater participation and visibility of CAAFAG as well as non-CAAFAG will increase the opportunities for children to be involved in community processes. As community members, and community decision makers in particular, have more positive interactions with CAAFAG, they are more likely to open up space for their involvement in community affairs. However, all participation shall be voluntary, and CAAFAG should not be pushed into visible roles unless they feel comfortable occupying them.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "3f4d7d5e-789d-4486-a323-e51e3ccd6552", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8.5.10 Monitoring and follow-up After CAAFAG have returned to their families and communities, monitoring and follow-up is essential. It requires careful planning, adequate funding and the collaboration of key governmental bodies, UN agencies and non-governmental organizations. Monitoring activities should occur through regular visits to children\u2019s homes, schools, and communities, including meetings with families, peers, teachers, and community leaders, without creating stigma or risk to the individuals and families involved. The living conditions of the child, the quality of his/her relationship with family members and caregivers, and the level of reintegration in the community should be regularly assessed. Confidential, accessible, and safe feedback mechanisms that allow children to report any concerns should be in place. Challenges should be identified to facilitate problem-solving, referral or programme adaptation where required. Success stories are also important for the generation of positive lessons learned and to present opportunities for replication in other areas or programmes. Monitoring should be conducted by a dedicated monitoring, evaluation and learning team. More staff are likely to be needed when large numbers of children are reunited with their families, because monitoring visits and other support activities become more labour-intensive and time-consuming as children are dispersed from a few central locations to scattered communities. Community\u00adbased child protection networks and community leaders, especially women, should be actively involved in monitoring the safety and well\u00adbeing of reunited children, and should assume increasing responsibility for ongoing monitoring and follow-up to ensure a smooth takeover of this work by the community. Monitoring systems should be developed to use programme-related data gathered during demobilization including verification exercises for children. Effective programme monitoring improves accountability by recording information on programme progress, suitability of selected approaches, and impact of support on children\u2019s well-being. Monitoring should be conducted throughout programming to inform programme adjustments, including how to better reach particularly vulnerable groups of children, such as girls or disabled children. Close, continuous monitoring at the situational level is also essential, as the context will certainly change over time as issues relating to child recruitment and use, verification and release are complex and often unpredictable. Follow-up systems should be established to ensure post-programme support for reintegrating children. The reintegration process takes time and will usually not be completed within the period of the programme. Returning CAAFAG remain vulnerable to re-recruitment, social exclusion and poverty and will require ongoing support for several years. Regular follow-up should be seen as an important element of the continuum of care for children. Therefore, follow-up support is critical to an effective exit strategy, ensuring that programme gains in reintegration are safeguarded. Follow-up systems should be developed in close consultation with children and the community. They should focus on especially vulnerable children (e.g., girl mothers, those not reunited with their family, those with severe psychosocial issues and disabled children). Support measures should be informed by disaggregated monitoring to ensure accurate targeting. Follow-up systems should also be community-based but linked to national systems. This can be achieved, for example, by supporting child well-being assessments.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "66eb81d5-3afe-4326-a9b3-b1b6dc47a23b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "When DDR programmes are linked to security sector reform (SSR), the composition of the new national army may be tied to the number of members of each armed force and group (see IDDRS 6.10 on DDR and SSR). Children are often included in these figures. Negotiations on SSR and force reduction must include the release of all children. CAAFAG shall not be included in troop numbers because the presence of children is illegal and including them may encourage more recruitment of children in the period before negotiations.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "8d26babf-06f0-4d37-a309-f45b8b5e12a9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 42, - "Paragraph": "9. Criminal responsibility and accountability Governments are bound by the CRC and guided by international standards and norms when dealing with children who are alleged to have, accused of having, or recognized as having infringed the penal law during the course of their association with an armed force or group. This is independent of the type of crime that is alleged to have been committed. In all cases, children shall be treated primarily as victims of human rights violations. Prosecution and judicial proceedings should only be used as a last resort, with emphasis instead on recovery and reintegration. 9.1 Children as victims Children, as victims of recruitment and use, should not be deprived of their liberty, prosecuted, punished or threatened with prosecution or punishment solely for their membership in armed forces or groups, consistent with Article 8.7 of the Paris Principles. National laws that criminalize child association effectively criminalize the child\u2019s status (associated) which results from an adult\u2019s criminal conduct (recruitment and use), and that violates the human rights of the child. Such laws should not apply to children. In addition, as for adults, any expressions of support for particular groups, acts, or ideologies that do not rise to the level of legally defined crimes such as incitement to discrimination, hostility, or violence, or to committing terrorist acts, should not constitute criminal offenses. Under the convention on the rights of the child (Article 2) States Parties shall take all appropriate measures to protect children against discrimination or punishment on the basis of the status, activities, expressed opinions, or beliefs of their parents, legal guardians, or family members. Thus, children should not be interrogated as a suspect or prosecuted due to the actual or alleged affiliation of a family member. As part of the investigation of cases involving a child victim or witness, child victims or witnesses, their parents or guardians, legal representatives or a designated support person, should be promptly and adequately informed of their rights, availability of services and protection measures, and procedures in relation to any adult and/or juvenile justice processes, from their first contact with the justice process and throughout, to the extent feasible and consistent with the child\u2019s best interests. Any investigative action, including interviews with or examinations of the child, shall be conducted by professionals specially trained in dealing with children using a child-sensitive approach. All investigative actions shall be conducted in a suitable environment, in a language that the child uses and understands, and in the presence of the child\u2019s parent, legal guardian, legal representative, or designated support person. To the extent possible, the repetition of interviews of child victims or witnesses should be minimized to prevent secondary victimization. The child\u2019s best interest and right to privacy must be considered in all actions (see also Section 6.3.1 Data Collection, and Section 9.5 Collecting testimonies from children). 9.2 Minimum age of criminal responsibility Under the CRC, States are required to establish a minimum age of criminal responsibility (MACR). The Committee on the Rights of the Child encouraged States to increase the MACR where possible, and not to lower it below 14 years of age, commending States that set a higher MACR such as 15 or 16 years of age. This is because children\u2019s brain development is still evolving during these years. Children under the MACR shall never be processed through the criminal justice system. Criminal accountability measures imposed on a child above the MACR shall consider the child\u2019s best interests, the child\u2019s age at the time of the commission of any alleged crime, the coercive environment under which the child may have been living, and any other mitigating circumstances, while simultaneously supporting the child\u2019s protection and reintegration. For all children, reintegration processes should be focused on addressing the root causes of their association and recovery, rather than punishment for any actions. 9.3 Juvenile justice and child-specific due process and minimum standards Children over the MACR can be held accountable for criminal acts they may have committed, including terrorist offences, but only while respecting their rights, employing child-specific juvenile justice processes, and with their best interests as a primary consideration. Due consideration shall be given to their right to child-specific due process and minimum standards based on their age, needs and specific vulnerabilities, including for example, the right to legal representation, and protections against self-incrimination. Justice systems handling cases of children over the MACR should always also prioritize the child\u2019s best interests and recognize the long-term process for children to sustainably reintegrate. Any judicial proceedings for children shall respect internationally recognized juvenile justice and fair trial standards, with a focus on recovery and restorative justice in order to assist children\u2019s physical, psychological and social recovery. Where no separate juvenile justice system is in place, cases should be handled by civilian authorities who have special training in child-friendly procedures, rather than military or intelligence authorities. All judicial actions relating to children shall take place in the presence of the child\u2019s appointed legal representative or other appropriate assistance, whose role it is to protect the rights and interests of the child, and unless contrary to the best interests of the child, in the presence of the child\u2019s parents or legal guardians. The UN Standard Minimum Rules for the Administration of Juvenile Justice (\u2018The Beijing Rules\u2019) adopted by General Assembly resolution 40/33 in 1985 provide guidance for the arrest or detention of children. Children retain all the rights already covered for adults if arrested. The Beijing Rules require detention of children only as a last resort so that arrest, detention or imprisonment of children should be avoided whenever possible. This requirement is further supported through the CRC which provides an obligation under international law for States to ensure that \u201cno child shall be deprived of his or her liberty unlawfully or arbitrarily\u201d and that the \u201carrest, detention or imprisonment of a child shall be in conformity with the law and shall be used only as a measure of last resort and for the shortest appropriate period of time\u201d. As such when children are arrested and detained, their cases are to be given the highest priority and handled expeditiously to ensure the shortest possible period of detention prior to trial. States should ensure that accountability mechanisms are fully in line with international law related to juvenile justice. International child rights and juvenile justice standards require that alternatives to normal judicial proceedings in criminal courts should be applied, providing that human rights and legal safeguards are fully respected (CRC, Article 40[3b], Rule 11, \u2018Beijing Rules\u2019). For example, restorative justice \u2013 achieved through finding alternatives to criminal courts \u2013 involves the child offender understanding and taking responsibility for his/her actions with the goal of achieving reconciliation between the offender, the victim and the wider community through reparations. Such a procedure should ensure that the rights of the child are protected throughout. The child\u2019s participation in a restorative justice process shall be voluntary and preceded by informed consent (given by both the child and his/her parent or guardian). Measures to prevent the child from becoming distressed must be in place. 9.3.1 Girl mothers and their children Girl mothers in contact with the law should receive special consideration \u2013 such as consideration of mitigating circumstances in sentencing \u2013 and the rights of her child(ren) should be factored into judicial decisions. This may include allowing mothers to serve sentences at home, in order to respect the best interests of their children and maintain family unity. Specific interventions shall be developed to address the various challenges that girl mothers and their children may face. Any such interventions shall be based on the best interests of each child, in recognition of the detrimental impacts that family separation and deprivation of liberty have on children. Family unity should be maintained save in exceptional circumstances where the parent poses an immediate and actual harm to the child. Practitioners shall advocate with Governments for mothers under 18 years of age to have the right to confer their nationality onto their children, a right that protects their children from becoming stateless.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "6bd87938-8761-4cb0-ab62-127f0dbde289", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 44, - "Paragraph": "9.4 Children associated with armed groups designated by the UN as terrorist organizations DDR practitioners shall encourage the release and reintegration of CAAFAG at all times and without precondition. There is no exception to this rule for children associated with armed groups that have been designated as terrorist by the Security Council Committee concerning ISIL (Da\u2019esh), Al-Qaida and associated individuals, groups, undertakings and entities established pursuant to resolution 1267 (1999), 1989 (2011) and 2253 (2015) or by any other state or regional body. No matter the armed group involved and no matter the age, status or conduct of the child, all relevant provisions of international law, including human rights, humanitarian, and refugee law. This includes all provisions and standards previously discussed, including the Convention on the Rights of the Child and its Optional Protocols, all standards for justice for children, the Paris Principles and Guidelines, where applicable, and the Geneva Conventions. As with all CAAFAG, children associated with designated terrorist groups shall be treated primarily as victims and be afforded their right to be released and provide them with the reintegration and other support described in this module without discrimination (Optional Protocol to the Convention on the Rights of the Child, Articles 6(3) and 7(1) and the Paris Principles and Guidelines on Children Associated with Armed Forces and Armed Groups (Articles 3.11-3.13). Security Council resolution 2427 (2018) \u201c[s]trongly condemns all violations of applicable international law involving the recruitment and use of children by parties to armed conflict as well as their re-recruitment\u2026\u201d and \u201c\u2026all other violations of international law, including international humanitarian law, human rights law and refugee law, committed against children in situations of armed conflict and demands that all relevant parties immediately put an end to such practices and take special measures to protect children.\u201d (OP1) The Security Council also emphasizes the responsibility of states to end impunity \u201cfor genocide, crimes against humanity, war crimes and other egregious crimes perpetrated against children\u201d including their recruitment and use. Children who have been recruited and used by terrorist groups are victims of violations of international law and have the same rights and protections as all children. Some children may also have committed crimes during their period of association. While children above the minimum age of criminal responsibility may be held accountable consistent with international law (see section 9.3), as victims of crime, these children should not face criminal charges for the mere fact of their association with a designated terrorist group or for activities that would not otherwise be criminal such as cooking, cleaning, or driving. Children whose parents, caregivers or family members are alleged to be associated with a designated terrorist group, also shall not be held accountable for the actions of their relatives nor shall they be excluded from measures or services that promote their physical and psychosocial recovery or reintegration. Security Council resolution 2427 (2018) stresses the need for States \u201cto pay particular attention to the treatment of children associated or allegedly associated with all non-state armed groups, including those who commit actors of terrorism, in particular by establishing standard operating procedures for the rapid handover of children to relevant civilian child protection actors\u201d (OP 19). It also urges Member States to mainstream child protection in all stages of DDR (OP24) and in security sector reforms (OP25), including through gender- and age-sensitive DDR processes, the establishment of child protection units in national security forces, and the strengthening of effective age assessment mechanisms to prevent underage recruitment. It stresses the importance of long-term sustainable reintegration for all boys and girls affected by armed conflict and working with communities to avoid stigmatization of children while facilitating their return in a way that enhances their wellbeing (OP 26). Children formerly under the control of UN designated terrorist groups, may be able to access refugee and asylum procedures depending on their individual situation and status (e.g., if they were forcibly recruited and trafficked across borders). All children and asylum seekers have a right to individual determinations to assess any claims they may have. For any child who asks for refugee or asylum status, the practitioner shall refer the child to the relevant UN entity or to a legal services provider. DDR practitioners shall not determine eligibility for asylum or refugee status.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7a788a38-0b2f-4166-84c4-2ea68b44ec71", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "9.4.1 Justice for children suspected, accused, or convicted of committing terrorism-related offences Consistent with Article 40 of the CRC, any child suspected, accused, or convicted of having committed a terrorism-related offence or an offence against national security has the right to be treated in a manner consistent with international law and standards, including juvenile justice standards: \u201cProcedures employed should promote the child\u2019s dignity and worth and reinforce the child\u2019s respect for the human rights and fundamental freedoms of others. It should take into account the child\u2019s age and the desirability of promoting the child\u2019s reintegration and the child\u2019s assuming a constructive role in society.\u201d In addition, if a state seeks to hold a child accountable for criminal acts alleged to have been committed while under the control of an armed group, courts and service providers should account for the child\u2019s experience and the coercive environment under which the child was living or forced to act when determining both criminal responsibility and the services or support that a child may need. In all decisions, the child\u2019s best interests shall be a primary consideration, \u201ceven when the child\u2019s interests may conflict with the State\u2019s perceived security interests.\u201d Any child allegedly associated with an armed group should be treated primarily as a victim. In this regard, irrespective of considerations of their legal responsibility with regard to any alleged offence defined as terrorist and/or a threat to national security under national legislation, children shall be afforded the rights set forth by the international legal framework related to child victims. Any child associated with an armed group and who is or has been suspected, charged or convicted of a terrorism related offence or is deprived of his or her liberty as a result, shall be treated in accordance with international law and internationally recognized juvenile justice standards, including the right to legal representation and the right to appeal. In case such a child is released from detention, the child shall be provided with required reintegration assistance and be part of the overall reintegration programme.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e3b5a6af-b137-46ab-9727-94315e68aab8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "9.5 Collecting testimonies from children As with all decisions involving children, the best interests of the child shall be a primary consideration when determining if a child should give information or testimony; however, under no circumstances shall a child be compelled to give testimony or a statement against himself or herself. Protective rules shall be established when collecting testimonies from children through justice mechanisms, a truth and reconciliation commission or the International Criminal Court. It is essential to protect the identity of child witnesses, to not require children to relive traumatic experiences as they testify, and to make it clear in criminal cases that their testimony may or may not succeed in convicting the accused, so that they do not have unrealistic expectations. Social support, such as psychological support, to facilitate this engagement should be provided at all times according to specific needs. Testimonies shall only be gathered once the child has given informed consent. The process should be explained in child-friendly language (in the language of the child), and, where possible, and if not contrary to the child\u2019s best interest, a parent or guardian should support the child in giving informed consent.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "4bb88b88-185f-46d9-9c69-424690cf25f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "Annex A: Abbreviations AEP\tAccelerated Education Programme CAAFAG\tchildren associated with armed forces and armed groups CRC\tConvention on the Rights of the Child CRSV\tConflict Related Sexual Violence ICC\tinterim care centre MACR\tMinimum Age of Criminal Responsibility MARA\tMonitoring and Reporting Arrangement MISP\tMinimum Initial Services Package MRM\tMonitoring and Reporting Mechanism OPAC\tOptional Protocol on the Involvement of Children in Armed Conflict SSR\tsecurity sector reform", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "1f209ff6-b4d0-425b-885c-7c6831c25e1f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 46, - "Paragraph": "Annex B. Determining a child\u2019s age Often children do not have civil registration documents showing their birth or age. However, because it is a breach of international humanitarian law, human rights law and international criminal law to recruit children under 15 years old anywhere, and to allow any child to take part in hostilities, and because children are entitled to special protections and support, it may be important to determine whether an individual is below age 18. Reintegration and child DDR generally are designed to ensure appropriate support to children under age 18, with no difference in definition, and regardless of the legal age of recruitment or other definitions or age of a child locally. It is important to manage the identification and separation of children from adults in a coordinated way during demobilization, and throughout DDR. Failure to do so may lead to serious unintended consequences, such as the re-recruitment of children, children claiming to be adults, and adults claiming to be children. To determine a child\u2019s age, the following are general principles: If in doubt, assume the person is below 18. Identification should take place as early as possible to allow them to access age-appropriate services. Identification must occur before disarmament. A child protection actor should be given access to disarmament sites to identify children. Children should be immediately informed that they are entitled to support so that they are less likely to try to identify as adults. Considerations: Interviews should be confidential. Identification of children should take place before any other identification processes. Children should not be required to show that they can use a weapon (this is because they may have been used in a non-combat role). During negotiations, children should not be counted in the number of armed forces or group (this is to avoid incentivizing child recruitment to inflate numbers). The role that a person plays in the armed group should have no effect of the determination of whether the person is a child. For practitioners who are handling demobilization, Age Assessment: A Technical Note (2013) gives more detailed information on age determinations and includes the following core standards: An age assessment should only be requested when it is in the best interests of the child. Children should be given relevant information about the age assessment procedure Informed consent must be sought from the person whose age is being assessed before the assessment begins. Age assessments should only be a measure of last resort and be initiated only if a serious doubt about the person\u2019s age exists. Age assessments should be applied without discrimination. An unaccompanied or separated child should have a guardian appointed to support them through the age assessment procedure. Assessments must follow the least intrusive method, which upholds the dignity and physical integrity of the child at all times, and be gender and culturally appropriate Where there is a margin of error, this margin should be applied in favour of the child. Age assessments should take an holistic approach. A means of challenging the age determination should exist if the child wishes to contest the outcome of the assessment. Age assessments should only be undertaken by independent and appropriately skilled practitioners. The checklist to determine the age includes: Pre-procedure: Undertake an age assessment only when relevant actors have serious doubts about the stated age of the child; ensure that the assessment is not being initiated as a routine or standard procedure. Is the procedure really necessary? Plan any physical examination only as a measure of last resort to take place only when all other attempts e.g., the gathering of documentary evidence, interviewing the child, etc., have failed to establish age. Is a physical examination the only method of assessing age? Secure informed consent to conduct the age assessment from the child or the guardian. It is extremely unlikely that genuine informed consent can be forthcoming at a time of \u2018crisis\u2019 and consent should only be sought when a child has had time to recover from traumatic or unsettling episodes \u2013 this may take considerable time in some instances. In circumstances where there is no consent, it cannot be used against the person and the person should be considered a child. Has the child given informed consent to a physical examination? During the Procedure Conduct any age assessment procedure using a multi-disciplinary approach that draws on a range of appropriately skilled professionals and not solely on a physical examination. Is a range of approaches being used in the age assessment? When selecting professionals to conduct an age assessment, select only those without a vested interest in the outcome, and who are independent from any agencies and actors that would provide services or support to the child or who would become responsible for the child if they are assessed as being a child. Are the professionals engaged in the assessment independent? Subject to the wishes of the child, support him or her throughout the process of assessment, including by informing the child in a language he or she understands, and providing a guardian, legal or other representative to accompany them during the entire process. Is the child supported throughout the process? Develop and conduct the age assessment process in a culturally and gender sensitive way using practitioners who are fully familiar with the child\u2019s cultural and ethnic background. Is the assessment sensitive to cultural and gender needs? Protect the child\u2019s bodily integrity and dignity at every stage of the process. Is the process free from humiliation, discrimination, or other affront? Conduct the age assessment in an environment that is safe for children, which supports their needs and is child appropriate. Is the process consistent with child safeguarding principles and child-friendly? Post procedure Provide any services and support relevant to the outcome of the assessment without delay. What services and support are required to address the person\u2019s identified needs? If any doubt remains about the age of the child, ensure that this is applied to the advantage of the child. Has any doubt about the child\u2019s age been resolved in favor of the child? As promptly as is reasonably practical, explain the outcome and the consequences of the outcome to the child. Have the outcome and its consequences been explained? Inform the child of the ways that he or she can challenge a decision which they disagree with. Has the child been informed of his or her rights to challenge the decision?", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "b6539c1f-07cd-46d1-b48b-c28862c15808", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": 49, - "Paragraph": "Annex C: Management guidelines for interim care centres Interim care centres (ICCs), sometimes referred to as transit centres, are not a necessary step in all DDR situations. Indeed, in the view of many protection agencies, an ICC may delay the reunification of children with their families and communities, which should happen as soon as possible. Nevertheless, while in some circumstances immediate reunification and support can occur, in others a centre can provide a protected temporary environment before family reunification. Other advantages to ICCs include that they provide the necessary space and time to carry out family tracing and verification; they provide a secure space in an otherwise insecure context before reunification, and gradual reunification when necessary; they allow medical support, including psychosocial support, to be provided; they provide additional time to children to cut their links with the military; and they provide an opportunity for pre-discharge awareness-raising/sensitization. Guiding principles and implementation strategies The decision to open a centre should be based on the following conditions: The level of insecurity in community of origin; The level of success in tracing the child\u2019s family or primary caregiver; The level of medical assistance and follow\u00adup required before integration; and The level of immediate psychosocial support required before reintegration. Management guidelines for Interim Care Centres The following management guidelines apply: Child protection specialists, not military or other actors should manage the centres. Children should only stay a limited amount of time in ICCs, and documentation and monitoring systems should be established to ensure that the length of stay is brief (weeks not months). At the end of their stay, if family reunification is not feasible, provision should be made for children to be cared for in other ways (in foster families, extended family networks, etc.). Systems should be established to protect children from abuse, and a code of conduct should be drawn up and applied. An adequate number of male and female staff should be available to deal with the differing needs of boys and girls. Staff should be trained in prevention of and response to gender\u00adbased violence and exploitation involving children, norms of confidentiality, child psychosocial development, tracing and reunification. ICCs should only accommodate children under 18. Some flexibility can be considered, based on the best interests of the child, e.g., in relation to girl mothers with infants and children or on medical grounds, on a case\u00adby\u00adcase basis. In addition, young children (under 14) should be separated from adolescents in order to avoid any risk of older children abusing younger ones. Sanitation and accommodation facilities should separate girls from boys and be sensitive to the needs of infants and girl mothers. ICCs should be located at a safe distance from conflict and recruitment areas; external access to the centre should be controlled. (For example, entry of adult combatants and fighters and the media can be disruptive, and can expose children to additional risks.) Security should be provided by peacekeepers or neutral forces. Activity guidelines Tracing, verification, reunification and monitoring should be carried out. Temporary care should take place within a community\u00adbased tracing and reintegration programme to assist the return of children to their communities (including community outreach), and to encourage the protection and development of war\u00adaffected children in general. Experience has showed that when only care is offered, centres present a risk of children becoming \u2018institutionalized\u2019 and dependent. Health check\u00adups and specialized health services should be provided when necessary (e.g., reproductive health and antenatal services, diagnosis of sexually transmitted infections, voluntary and confidential HIV testing with appropriate psychosocial support, and health care for nutritional deficiencies and war\u00adrelated injuries). Basic psychosocial counselling should be provided, including help to overcome trauma and develop self\u00adesteem and life skills. Information and guidance should be provided on the reintegration opportunities available. Activities should focus on restoring the social norms and routines of civilian life; age\u00ad and gender\u00adappropriate sports, cultural and recreational activities should be provided. Community sensitization should be carried out before the child\u2019s arrival. Formal education or training activities should not be provided at the ICC; however, literacy testing can be conducted. Communities near the ICC should be sensitized about the ICC\u2019s role. Children in the centres should be encouraged to participate in community activities to encourage trust. During temporary care, peace education should be part of everyday life as well as the formal programmes, and cover key principles, objectives, and values related to the non\u00adviolent resolution of conflict. Additional Resources: United Nations Guidelines for Alternative Care, A/Res/64/142 (24 Feb 2010) Alternative Care in Emergencies Toolkit, Interagency Working Group on Unaccompanied and Separated Children (2013). Field Handbook on Unaccompanied and Separated Children, Alliance for Child Protection in Humanitarian Action (2016) Toolkit on Unaccompanied and Separated Children, Alliance for Child Protection in Humanitarian Action (2017) Child Safeguarding Standards and How to Implement Them, Keeping Children Safe (2014) Protection from Sexual Exploitation and Abuse Task Force online resources Guidelines for Justice in Matters involving Child Victims and Witnesses of Crime (2009).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "96deb9b0-12a1-4202-996f-ef948cfd5286", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Annex D: Do\u2019s and don\u2019ts for mental health and psychosocial support in emergency settings The following table gives simple information on setting up Mental Health and Psychosocial Support services in emergency situations.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023.json b/static/data/json/IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023.json deleted file mode 100644 index 56fcbbd..0000000 --- a/static/data/json/IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023.json +++ /dev/null @@ -1,1066 +0,0 @@ -[ - { - "ID": "ac487c3d-1d7e-4459-a7a0-ea7843928dec", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "Summary This module offers advice to policymakers and practitioners responding to cross-border movements and the presence of foreign combatants and those associated with armed groups and forces in non-combat roles in the context of armed conflict. In some armed conflicts, combatants and civilians move across international borders. The increase in non-international armed conflicts, the proliferation and diversity of armed groups, and widespread violations of international humanitarian law are all factors that affect the operational environment on the ground. The presence of foreign fighters in certain conflicts further contributes to the intensity, duration and complexity of these conflicts, and may therefore create risks to their States of origin, transit or destination, as well as zones of armed conflict in neighbouring states. Concerns have emerged about the threats that the presence of foreign combatants might pose to efforts to establish and maintain the civilian and humanitarian nature of asylum. Lack of a regional dimension to planning that takes these operational realities into account may contribute to the \u201crecycling\u201d of combatants from one conflict to another, within a region and beyond. This module therefore advocates for close collaboration between States, as well as all relevant agencies and other stakeholders, with the view of establishing regional strategies and coherence between DDR processes across a region. When working with cross-border movements, it should be kept in mind that most people moving across borders during an armed conflict are in fact civilians, many of whom are seeking asylum from persecution, conflict and violence, and have the right to international protection. As such, this module also sets out the basic principles relating to international refugee law and international human rights law, where relevant. Closely related to this, the module emphasizes the responsibility of host States, with the support of the international community, to preserve the peaceful, civilian and humanitarian character of asylum. To do so, combatants must be identified and separated from civilians at the earliest possible time, and armed individuals must be disarmed. This is essential to ensure the protection and safety of displaced civilians and survivors of rights violations (including children who may have been associated with armed forces and groups); enable humanitarian assistance; safeguard humanitarian staff; and maintain States\u2019 internal and external security. Children associated with armed forces and groups shall be identified and referred to civilian child protection actors immediately and without precondition, even during armed conflict. The presence of foreign combatants on a State\u2019s territory may contribute to deteriorating security for host communities, jeopardize inter-State relations, and even threaten regional or international stability, peace and security. States must therefore find appropriate solutions, in accordance with international law and applicable standards.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "f7ea88fc-9533-4897-bff1-1be52de339bb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module seeks to provide guidance around the following questions: What population groups are moving across international borders during conflict? What legal frameworks and standards govern the treatment of each of these groups, including on issues related to their eligibility for support and rights in relation to DDR programmes? What are the recommendations for action, on both sides of the border? What are the roles and responsibilities of international and national agencies? The following groups (categories of persons) will be covered: Adult foreign combatants, not including foreign terrorist fighters; Adult foreign persons associated with armed forces and groups who do not have roles as combatants, but who are group members with other supporting roles (see IDDRS 2.10 on The UN Approach to DDR); Foreign children associated with armed forces or groups, as defined by the Paris Principles and Commitments; Civilian family members and other dependants of foreign combatants or associated persons; Abductees or victims; and Community members. The module considers various phases of cross-border movements in the context of armed conflict: (i) upon crossing an international border, (ii) during the planning and implementation of DDR, (iii) during repatriation, and (iv) during return and reintegration to the country of origin or a third country. It also discusses possible solutions for those who cannot be repatriated (e.g., because they would face persecution, torture or other serious harm upon return) and briefly explores issues related to the prevention of recruitment. In addition to the specific groups highlighted above, in these situations there is often a complex migratory population that may need to be considered, including those practicing transhumance and nomadic pastoralism, as well as cross-border traders, refugees, smuggled migrants and trafficked populations. Foreign combatants and associated persons may return to different countries and be handled under different frameworks. This module focuses on contexts where return is to countries where a DDR programme will be in place, but it also discusses situations where elements of DDR (for example, disarmament and demobilization) may be carried out in the host country prior to reintegration in the return country or other locations. Additional references are provided in IDDRS 2.11 on The Legal Framework for UN DDR. Guidance on children associated with armed forces or groups is included where specific issues related to children having crossed an international border need to be highlighted or raised. This should be read in conjunction with the guidance provided in IDDRS 5.20 on Children and DDR. Issues related to cross-border illicit arms flows are briefly described, and references to sources of guidance on arms control are provided. The principles and standards set out in this module are focused on DDR programmes. However, the principles also apply in situations where DDR-related tools and reintegration support are implemented in the absence of a DDR programme (see IDDRS 2.10 on The UN Approach to DDR). In these instances, it will be important to consider the cross-border cooperation and agreements that may be needed.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9e850ba5-1b8b-4541-b2a0-7693b585a2bd", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations A complete glossary of all the terms, definitions and abbreviations used in the series of integrated DDR standards (IDDRS) is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; (b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; (c) \u2018may\u2019 is used to indicate a possible method or course of action; (d) \u2018can\u2019 is used to indicate a possibility and capability; and (e) \u2018must\u2019 is used to indicate an external constraint or obligation. Asylum: The grant, by a State, of protection on its territory to persons from another State who are fleeing persecution or serious danger. A person who is granted asylum is a refugee. Asylum encompasses a variety of elements, including non\u00adrefoulement, permission to remain in the territory of the asylum country and humane standards of treatment. Asylum seeker: A person whose request for international protection has not yet been finally decided on by the country to which the claim is submitted. Children associated with armed forces or armed groups (CAAFAG): The definition commonly applied in prevention, demobilization and reintegration programmes derives from the Cape Town Principles and Best Practices (1997), in which the term \u201cchild soldier\u201d refers to \u201cany person under 18 years of age who is part of any kind of regular or irregular armed force or armed group in any capacity, including, but not limited to: cooks, porters, messengers and anyone accompanying such groups, other than family members. The definition includes girls recruited for sexual purposes and for forced marriage. It does not, therefore, only refer to a child who is carrying or has carried arms.\u201d In his February 2000 report to the UN Security Council, the Secretary-General defined a child soldier as \u201cany person under 18 years of age who forms part of an armed force in any capacity and those accompanying such groups, other than purely as family members, as well as girls recruited for sexual purposes and forced marriage\u201d (S/2000/101). The Convention on the Rights of the Child( CRC) specifies that a child is every human below the age of 18. The term \u201cchildren associated with armed forces or armed groups\u201d, although more cumbersome, is now used to avoid the perception that the only children of concern are combatant boys. It highlights that children eligible for release and reintegration programmes are both those associated with armed forces and groups and those who fled armed forces and groups (often regarded as deserters and therefore requiring support and protection), children who were abducted, those forcibly married and those in detention. Access to demobilization does not depend on a child\u2019s level of involvement in armed forces and groups. No distinction is made between combatants and non-combatants so as to avoid unfair treatment, oversight or exclusion (mainly of girls). Nevertheless, the child\u2019s personal history and activities in the armed conflict can help determine the kind of support he/she needs in the reintegration phase. Combatant: Based on an analogy with the definition set out in the Third Geneva Convention of 1949 relative to the Treatment of Prisoners of War in relation to persons engaged in international armed conflicts, a combatant is a person who is a member of a national army or an irregular military organization, is actively participating in military activities and hostilities, is involved in recruiting or training military personnel, holds a command or decision-making position within a national army or an armed organization, arrived in a host country carrying arms or in military uniform or as part of a military structure, or, having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Dependant: A civilian who depends upon a combatant for his/her livelihood. This can include friends and relatives of the combatant, such as aged men and women, non-mobilized children, and women and girls. Some dependants may also be active members of a fighting force. For the purposes of DDR programming, such persons shall be considered combatants, not dependants. Foreign combatant: A person who meets all the definitions of a combatant (above) but is not a national of the country where he or she is located. This may include someone who arrives in a host country carrying arms or in military uniform or as part of a military structure, or who, having arrived in a host country as an ordinary civilian, thereafter assumes, or shows determination to assume, any of the above attributes. Foreign terrorist fighter: An individual who travels to a State other than his/her State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in terrorist acts or the providing or receiving of terrorist training. Gender: The characteristics of women, men, girls and boys that are socially constructed. This includes norms, behaviours and roles associated with being a woman, man, girl or boy, as well as relationships with each other. As a social construct, gender varies from society to society and can change over time. Host state or host country: The country in which a non-national stays or resides, whether legally or irregularly. Internally displaced persons: Persons or groups of persons who have been forced or obliged to flee or leave their homes or places of habitual residence, in particular as a result of or in order to avoid the effects of armed conflict, situations of generalized violence, violations of human rights or natural or human-made disasters, and who have not crossed an internationally recognized state border. Mercenary: Any person who (a) is specially recruited locally or abroad in order to fight in an armed conflict; (b) is motivated to take part in the hostilities essentially by the desire for private gain and, in fact, is promised, by or on behalf of a party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar rank and functions in the armed forces of that party; (c) is neither a national of a party to the conflict nor a resident of territory controlled by a party to the conflict; (d) is not a member of the armed forces of a party to the conflict; and (e) has not been sent by a State that is not a party to the conflict on official duty as a member of its armed forces. Non-refoulement: A core principle of international\u00a0human rights\u00a0and refugee law that prohibits States from returning individuals in any manner whatsoever (whether directly or indirectly) to territories where they may be at risk of\u00a0persecution, torture or other forms of serious or irreparable harm. The most prominent expression of the principle of non-refoulement in international\u00a0refugee law\u00a0is article 33(1) of the\u00a01951 Refugee Convention. The principle also is part of\u00a0customary international law\u00a0and is therefore binding on all States, whether or not they are parties to the 1951 Refugee Convention. Under international human rights law, the principle of non-refoulement prohibits States from returning any person, irrespective of their status, to a country where they would be at risk of torture; cruel, inhuman or degrading treatment or punishment; or other irreparable harm. Refugee: A person who meets the eligibility criteria set out in article 1A(2) of the 1951 Refugee Convention and does not fall within the scope of an exclusion clause. This definition has been extended through regional instruments, such as the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa, the 1984 Cartagena Declaration on Refugees, and the Common European Asylum System\u2019s Qualification Directive. Screening: Screening in relation to DDR is typically undertaken to ascertain if an individual is eligible to participate in a DDR programme (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 4.20 on Demobilization). Age assessment will help identify any children and should take place at the earliest possible moment. However, in situations where the presence of foreign combatants is known or suspected, screening also refers to the processes whereby they are identified and separated from civilians. Smuggling of migrants: The facilitation, for financial or other material gain, of irregular entry into a country where a migrant is not a national or resident. The criminals behind this highly profitable business seize the opportunity created by the need or desire of people to escape not just poverty and lack of employment opportunities but also natural hazards, conflict or persecution. Trafficking in persons: The recruitment, transportation, transfer, harboring or receipt of persons, by means of the threat or use of force or other forms of coercion, abduction, fraud, deception, abuse of power or of a position of vulnerability, or of the giving or receiving of payments or benefits to achieve the consent of a person having control over another person, for the purpose of exploitation. Exploitation shall include, at a minimum, the prostitution of others or other forms of sexual exploitation, forced labour or services, slavery or practices similar to slavery, servitude, or the removal of organs.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "3e8c92eb-595f-4074-a566-cdee065f037c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 7, - "Paragraph": "3. Introduction Significant numbers of conflicts have regional and cross-border dimensions. The reasons are multifaceted and often complex, and may include historical ties between groups on either side of a border, the presence of large and porous borders with limited controls and infrastructure, and contestation over natural or other resources. A variety of non-state armed groups may use border areas as a location for their activities due to a limited state presence and the ability to pass quickly between jurisdictions, and this may cause or exacerbate tensions and conflict between groups on either side of a border. Armed conflicts in border areas may lead to significant cross-border population movements of both civilians fleeing violence and combatants. Foreign combatants may come from the same community as the general population or may be effectively hiding among them or using them as shields. The identification and separation of foreign combatants from refugee populations or those seeking asylum has presented serious challenges in a number of settings in recent years. Moreover, the presence of foreign combatants in and around refugee camps has been widely recognized as exacerbating the existing vulnerabilities of refugee populations and exposing them, particularly women and children, to increased levels of violence and insecurity. In some instances, the presence of foreign combatants can pose a threat to wider national, regional and international security and can seriously jeopardize the peaceful, civilian and humanitarian character of asylum. While States may have their own reasons for sheltering foreign combatants/fighters, there may also be a lack of capacity to prevent foreign combatants/fighters from entering a neighbouring country. Combatants who cross international borders may have a range of reasons for doing so, including to flee attack, regroup, launch cross-border attacks, bring family members and other dependants to safety or visit them, find food and supplies, leave an armed force or armed group permanently, lay down arms and seek asylum, or join armed groups in the country they have crossed into. In some contexts, combatants have even sought to join DDR programmes in neighbouring countries if there were perceived benefits to doing so. The relationship between civilians and foreign combatants is quite often complex and ambiguous. In some instances, they may enjoy close kinship or other ties with communities and be provided with support. In others, the relationship may be based more on fear and intimidation, with forced or coerced recruitment and communities preyed upon for food and other supplies. It is not uncommon for relationships to change over time. Particular complexities are involved in situations where foreign combatants cross the border alongside civilians and their status may not be obvious, as many arrive without weapons and in civilian clothes. At the same time, especially in societies where there are high numbers of small arms and light weapons in circulation, not everyone who arrives with a weapon is necessarily a combatant or can be presumed to be. The sheer size of population movements can be overwhelming for a State, sometimes making it impossible to disarm those carrying weapons and conduct screening aimed at identifying combatants/fighters at the point of arrival. Competition over natural resources is a driver of violence and conflict in many settings, a dynamic that is being exacerbated by climate change in several regions, negatively impacting livelihoods and local economies. In some areas, communities and individuals are increasingly turning to armed groups to sustain their livelihoods and to protect them from others. The consequences of climate change therefore do not only include economic hardship but may also cause or exacerbate communal conflicts and tension over natural resources. Armed groups, including those operating across borders, may capitalize on these tensions to entice individuals to join their efforts. Youth and children, in particular, are at increased risk of recruitment in these settings. Recruitment can involve families or communities handing over community members, including children, out of a sense of obligation or due to pressure from armed groups. Children and adults may also join armed groups due to a lack of other options or coercion. Once associated, they may be prevented from leaving through the use of violence, threats, sanctions and even narcotics. Children also can be recruited or used by an armed force or group in any capacity, including, but not limited to, fighters, cooks, porters, messengers, spies or for sexual purposes. Women and girls are often forcibly recruited by armed groups for labour, to be used as smuggling agents for weapons and ammunition, as a sexual reward for men who join the fight, or for the purpose of forced marriage or forced pregnancy (see IDDRS 6.40 on DDR and Organized Crime). All of this typically amounts to human trafficking, as women and girls are recruited by force, fraud, coercion, abduction or abuse of power for an exploitative purpose. Women and girls may also voluntarily join armed forces and groups for a number of reasons, including to escape narrow gender roles and physical and economic insecurity, to gain respect or leadership opportunities, and to seek personal or family security. Armed groups may additionally engage in human trafficking in order to obtain financing for their organization or for personal use. They can profit directly through receiving payment for a person or by reaping the benefits of forcing victims into exploitative labour or services. Groups that have control over a territory that coincides with smuggling routes can also open new markets in the illicit economy within mixed migration flows. They do so either by directly facilitating smuggling of migrants or by requiring migrant smugglers to pay \u201ctolls\u201d for passage or compensation in exchange for security. The presence and activities of foreign combatants and armed groups that cross borders may also cause disruption and create risks for others who frequently cross borders in pursuit of livelihoods or due to kinship ties. These include pastoralists and those involved in cross-border trade, who may face restriction to their movements, suspicion from communities, harassment from security forces and/or attacks from armed groups in border areas. The sudden or unplanned return or relocation of foreign combatants may in some cases create tensions at the community level and needs to be properly assessed and then planned for, particularly when this may be taking place against a backdrop of wider population movements and returns. Conversely, a well-planned and -implemented return and reintegration process that is coordinated with wider stabilization and peacebuilding efforts may help to build social cohesion and encourage reintegration and recovery efforts. At the end of a conflict, support for recovery is needed for all those involved in and impacted by the conflict. This includes the safe repatriation and reintegration of foreign combatants, associated persons, dependants and refugees to their countries of origin as well as support to communities impacted on both sides of the border. Post-conflict support must also include continued identification and ongoing assistance to victims of trafficking. This holistic approach contributes to the process of healing and the capacity to (re-)establish functioning, peaceful communities across a region, thereby helping to prevent the recurrence of conflict and violence. Any DDR programmes, DDR-related tools or reintegration support should be regional in scope in order to deal with the realities of cross-border conflict. Experience has shown that DDR directed at nationals of a specific country in isolation have failed to adequately deal with the problems of combatants being recycled from conflict to conflict within (and sometimes even outside) a region, and with the spill-over effects of conflicts. The identification, disarmament, demobilization, separation, rehabilitation, repatriation and reintegration of foreign combatants requires a stronger and more consistent cross-border focus, involving both host countries and countries of origin and, when appropriate, benefiting both nationals and foreign combatants. This dimension has increasingly been recognized by the UN in recent peacekeeping operations. It is essential to ensure coherence between DDR processes in adjacent countries in regions engulfed by conflict to prevent people from moving around from process to process in the hopes of gaining benefits in more than one location. In all situations, when and how DDR programmes or tools are provided and to whom should depend on a careful assessment of the context that they are meant to address and what is most likely to achieve results. However, as highlighted in this section, regional and cross-border dimensions must always be considered in both programme design and operations.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "a4670019-d447-410e-8da0-2de88734388b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "4.1 Voluntary Integrated DDR shall be a voluntary process for armed forces and groups, both as organizations and individuals. Therefore, groups and individuals shall not be coerced to participate. This principle has become even more important, but contested, in contemporary conflict environments where the participation of some combatants/fighters in nationally, locally or privately supported efforts is arguably involuntary, for example, following their capture on the battlefield or their being forced into rehabilitation or reintegration programmes under duress. Internment and detention shall not be the responsibility of those running a DDR programme, although DDR personnel may ask to engage with national authorities who carry out such activities. It is important that legal advice is sought and obtained prior to engaging both with those interned and those carrying out internment. Entry into any DDR programme (or broader DDR process) must always be voluntary, and any repatriation carried out under the auspices of DDR must therefore be on a voluntary basis and in accordance with the principle of non-refoulement as set out in international humanitarian, human rights and refugee law. Outside of DDR processes there may, however, be other legal grounds consistent with international law under which foreign combatants eventually may be returned to their countries of origin, as long as this does not result in a risk of harm that would engage the host countries\u2019 non-refoulement obligations. However, as highlighted in IDDRS 2.10 on The UN Approach to DDR, the nature of conflict environments, and the growing potential for overlap with State-led efforts countering violent extremism and counter-terrorism, have increased the likelihood that the UN and other actors engaging in DDR may be faced with situations in which people have been detained on security grounds or are in situations that amount to deprivation of liberty. DDR practitioners shall seek legal advice if confronted with surrendered or captured combatants or overt military operations, or if there are any concerns regarding the voluntary nature of DDR. They should also be aware of requirements contained in Chapter VII resolutions of the Security Council that, among other things, decided that Member States shall ensure that any person who participates in the preparation or perpetration of terrorist acts or in supporting terrorist acts is brought to justice (see IDDRS 2.11 on The Legal Framework for UN DDR).", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "fecccd96-5e3e-47d0-bc6e-4a591ce25378", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 9, - "Paragraph": "4.2 Unconditional release and protection of children Children associated with armed forces and groups, including foreign children, shall be treated primarily as victims of human rights violations. They shall be identified as early as possible and immediately transferred to civilian child protection actors without precondition, even during armed conflict and even in the absence of a peace agreement or a DDR process. Children who have been associated with armed forces or groups should not be prosecuted or punished, or threatened with prosecution or punishment, solely for their association with those forces or groups. States should take steps to end the detention of children consistent with international law. Children accused of crimes under international or national law allegedly committed while associated with armed forces or groups shall be treated in accordance with international standards for juvenile justice, which emphasize alternatives to detention and prioritize the rehabilitation and social reintegration of the child. Further specific guidance may be found in IDDRS 5.20 on Children and DDR.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "768d9786-1557-4f94-a056-bafedcf63419", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.3 In accordance with the standards and principles of international assistance Host countries are obliged to handle cross-border population movements in accordance with international humanitarian, human rights and refugee law. This includes respect for the human rights of refugees and migrants, and respect for the principle of non-refoulement. The State may have political sympathies or interests with regard to one of the parties to an armed conflict, which may affect their policies or responses in practice. Even if the host country is not neutral, DDR practitioners shall highlight the obligations of the host country and the benefits of complying with the international law and legal frameworks described in section 5. Awareness raising, training and advocacy, as well as the development of individual country strategies to enhance host State capacity, cooperation and compliance with international law standards, should be carried out.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6b541079-4afb-4bf9-9274-9c682c1abe56", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.4 Gender responsive and inclusive The specific protection and assistance requirements of women and girls and men and boys recruited by armed forces or groups need to be addressed, including of those who may be survivors of sexual and gender-based violence (SGBV). This shall include specific consideration of the needs of women who may have performed largely supporting roles, as well as the dependants of combatants/fighters. Their needs will depend on the context, but will often include, at a minimum, reproductive health services and SGBV support services, including psychological support. In cases where the SGBV amounts to human trafficking, victims must be ensured the protections extended to them under the Trafficking in Persons Protocol, and these must include appropriate age- and gender-specific psychological, economic and social assistance (see IDDRS 6.40 on DDR and Organized Crime). In many settings, women and girls who are separated from their wider family and social networks may face specific challenges related to their immediate protection and well-being in the host country and during repatriation and reintegration, and these will require special consideration.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "62efe9fa-8f89-4bc1-a2fb-01e094656146", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.5 Conflict sensitive It is recognized that \u201cdo no harm\u201d shall be a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In relation to foreign combatants, particular measures may be required to manage potential tensions between such groups and communities within host countries. Careful assessment will also be needed prior to their return to ensure that they can be safely received and reintegrated and to consider any potential challenges their return may cause. Failure to undertake the necessary measures and assessments can increase conflict and security risks.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5f3d20f3-3ddf-4ebe-aca7-6ed598f94946", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 10, - "Paragraph": "4.6 Context specific The varying reasons for the arrival of foreign combatants in a host country, as well as whether or not that country is involved in an armed conflict, will be among the factors that determine the response of the host country and the international community. For example, foreign combatants may enter a country directly involved in armed conflict, a country that is a neutral neighbouring State, or a non-neutral country not directly involved in the conflict.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "237a9b5f-61d3-410c-9d7b-9f3ec49d88af", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "4.7 Integrated No single international agency has a mandate for cross-border movements of foreign combatants, associated persons and dependants, but all have an interest in ensuring that issues are properly dealt with and that States abide by their international obligations. Therefore, DDR programmes should be carried out within inter-agency frameworks. In principle, such structures may also be used to discuss other DDR activities (i.e., DDR-related tools and/or reintegration support) and to coordinate action when these deal with foreign combatants or have cross-border implications. This is particularly important in relation to any support provided by DDR programmes, given the potential risks associated with ex-combatants attempting to access multiple DDR initiatives across international borders.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "bf8475da-500c-4117-b9f4-f0c502e19251", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "5.1 Frameworks and laws of relevance International law provides several applicable frameworks for dealing with cross-border movements of combatants/fighters and civilians. In particular: International humanitarian law (IHL) is applicable to all: combatants and civilians (including asylum seekers, refugees and migrants). IHL includes specific rules on civilians taking direct part in hostilities or contributing to the general war effort, as well as other categories of non-combatants. Relevant IHL norms on the conduct of hostilities should govern the behaviour of foreign fighters, regardless of their nationality. Foreign fighters are thus subject to the same IHL principles and rules that are binding on any other type of belligerent. International human rights law is relevant in setting the framework for the treatment of foreign combatants/fighters, as well as civilians, including asylum seekers, refugees and migrants. It includes the obligation to respect the principle of non-refoulement, which precludes States from forcibly removing an individual to a country where there is a risk of torture or other serious harm. International refugee law is only relevant for civilians who have submitted an asylum claim and/or have been recognized as refugees. It can, however, include former combatants/fighters for whom it has been verified that they have genuinely and permanently renounced military activities and who have sought asylum. For asylum seekers and refugees, States are bound by the principle of non-refoulement under international refugee law, in addition to relevant obligations under international human rights law. During an international armed conflict, the law of neutrality requires a neutral State to intern foreign troops entering its territory. Under the duty of non-intervention and friendly relations between States, as set out in the UN Charter, States are obliged to act with due diligence to prevent the use of their territory by individuals whose purpose is to attack another State. International law on transnational organized crime is relevant for ensuring access to justice for victims of crime, including those from mixed migration populations, civilians and combatants. It is additionally relevant in aiding to address illicit financial flows, money laundering and corruption. Further information on legal frameworks and laws that are particularly relevant when considering issues related to foreign combatants are considered below.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ed3ca2e5-75b4-4498-82c8-d791370e583f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 11, - "Paragraph": "5.1.1 The Charter of the United Nations Under article 2(4) of the UN Charter, States have an obligation to \u201crefrain in their international relations from the threat or use of force against the territorial integrity or political independence of any State, or in any other manner inconsistent with the Purposes of the United Nations\u201d (this is regarded as customary international law binding on all States). UN General Assembly resolution 2625 (XXV) of 24 October 1970, which adopted the Declaration on Principles of International Law concerning Friendly Relations and Cooperation among States in Accordance with the Charter of the United Nations, prohibits the indirect use of armed force, through assisting, encouraging or tolerating armed activities against another State by irregular forces, armed bands or individuals, whether nationals or foreigners.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ac23089a-c72c-4ff7-9588-c5f3790cce92", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.2 Law of neutrality The Hague Convention of 1907 dealing with the Rights and Duties of Neutral Powers and Persons in Case of War on Land is regarded as having attained customary law status, making it binding on all States. It requires neutral States to disarm foreign combatants, separate them from civilian populations, intern them at a safe distance from the conflict zone, and provide humane treatment until the end of the war, to ensure that they no longer pose a threat or continue to engage in hostilities. Neutral States are also required to provide interned combatants with humane treatment and conditions of internment. Although the convention relates to international armed conflicts, it is generally accepted that it is also applicable to internal armed conflicts in which foreign fighters from government armed forces or opposition armed groups have entered the territory of a neutral State. It also contains an obligation to intern such fighters.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "4df1fe0e-08f2-4b69-b852-a1e7c5b48232", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.3 UN conventions on statelessness The 1954 Convention relating to the Status of Stateless Persons and the 1961 Convention on the Reduction of Statelessness are complemented by international human rights treaties and provisions relevant to the right to a nationality. They are of relevance to dealing with foreign combatants, as they define and limit the circumstances in which someone can be deprived of their nationality.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dbf01c90-03b8-458e-ac9f-1eb16997ec51", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.4 International humanitarian law In accordance with article 4(B)2 of the Third Geneva Convention of 1949 relative to the treatment of prisoners of war, which is applicable in the context of international armed conflicts, foreign combatants interned by neutral States are entitled to treatment and conditions of internment given to prisoners of war under the convention. Additional Protocol II, Part II, relating to protection of victims of non\u00adinternational armed conflicts, provides for humane, non\u00addiscriminatory treatment for those who do not take a direct part or who have ceased to take part in hostilities, whether their liberty has been restricted or not.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9750f29e-e905-486e-9240-a84f0238bb01", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 12, - "Paragraph": "5.1.5 International human rights law The 1984 UN Convention against Torture and Other Cruel, Inhuman or Degrading Treatment or Punishment contains a broad non\u00adrefoulement provision, which states that \u201cno State Party shall expel, return (\u2018refouler\u2019) or extradite a person to another State where there are substantial grounds for believing that he would be in danger of being subjected to torture\u201d. There are no exceptions to this non\u00adrefoulement provision, so foreign combatants may not be forcibly returned to a country of origin in situations where there are grounds to believe that they would be at risk of torture if returned. \u201cFor the purposes of determining whether there are such grounds, the competent authorities shall take into account all relevant considerations including, where applicable, the existence in the State concerned of a consistent pattern of gross, flagrant or mass violation of human rights\u201d (art. 3[2]). Articles 6 and 7 of the International Covenant on Civil and Political Rights also provide important potential protections in terms of the right to life and the prohibition against anyone being subjected to torture or to cruel, inhuman or degrading treatment or punishment. The United Nations Convention on the Rights of the Child, adopted in 1989, recognizes the human rights of children, defined as persons up to the age of 18 years. Its Optional Protocol on the involvement of children in armed conflict, adopted in 2000, aims to protect children from recruitment and use in hostilities and is of particular importance to this guidance (further information can be found in IDDRS 5.20 on Children and DDR). The Security Council has made a number of resolutions emphasizing the importance of recognizing and including the concerns of women in DDR. Security Council resolution 1325 (2000) recognizes that women are an asset to both peace and DDR processes and must be afforded the right to participate fully. It encourages all those involved in the planning for DDR \u201cto consider the different needs of female and male ex-combatants and to take into account the needs of their dependants\u201d, and calls on parties to armed conflict to \u201ctake special measures to protect women and girls from gender-based violence, particularly rape and other forms of sexual abuse, and all other forms of violence in situations of armed conflict\u201d. These calls have been reiterated in resolutions 1820 (2008), 1888 (2009), 1889 (2009), 2106 (2013) v and 2122 (2013). Resolution 2122 calls for the full participation and protection of women as part of DDR and security sector reforms.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "03f75a3c-3d8b-4b40-b75c-e798163a5660", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 13, - "Paragraph": "5.1.6 International refugee law A refugee is defined in the 1951 Refugee Convention and its 1967 Protocol as a person who is outside his/her country of origin; has a well-founded fear of persecution because of race, religion, nationality, membership in a particular social group, or political opinion; and is unable or unwilling to avail him/herself of the protection of that country, or to return there, owing to the well-founded fear of persecution. Several later regional instruments extend this definition. These include the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa and, in Latin America, the Cartagena Declaration of 1984. These extended the definition to cover more broadly those who have been threatened or impacted by violence or conflict, or had their human rights violated. An important principle is that asylum has an inherently peaceful, civilian and humanitarian character. Military activity is incompatible with asylum, and persons who pursue military activities in a country of asylum cannot be asylum seekers or refugees. As such, only civilians can benefit from the protection that asylum and the granting of refugee status affords. Maintaining the civilian and humanitarian character of asylum is\u00a0an established and respected international refugee standard and a principle of international protection. It derives from rules in international refugee law, human rights law, international humanitarian law, national law, the United Nations High Commissioner for Refugees statutes, and the UN Charter, and is aimed both at protecting individual refugees and, more widely, maintaining the integrity of the institution of asylum. An active foreign combatant cannot be considered a refugee, but it is possible that refugee status may be conferred if it is clear that an individual has genuinely and permanently given up military activities, provided that he/she is determined to be eligible for refugee status. Foreign combatants who wish to seek international protection as refugees are therefore expected to go through a process that involves disarmament, separation and verification that they have renounced military activities, enabling a determination of refugee status to be made. The presence and activities of foreign combatants in refugee settings has been widely recognized as an issue that can exacerbate the vulnerability of refugee populations and lead to increased risks of violence and insecurity, including SGBV, particularly for women and children. Additionally, when the civilian and humanitarian character of asylum is compromised, it often causes tension with host communities and authorities and can impede asylum seekers\u2019 access to basic rights. It has also been seen to create increased insecurity for humanitarian personnel and threaten humanitarian access. Given the fundamental importance of the above to the safety and protection of refugees, asylum seekers and host communities, substantial effort and emphasis must be placed on the maintenance of the civilian and humanitarian character of asylum and the need to ensure the clear separation of combatants/fighters from refugees. Ongoing monitoring will also be required to detect the presence of weapons and ammunition inside refugee sites and, in some circumstances, weapons searches may be conducted. It is recommended that searches should be conducted by police rather than by the military authorities. Guidance related to the safe and secure collection, registration, storage, transportation and/or disposal of weapons, ammunition and explosives is provided in IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunition Management. Written guidelines have been developed covering some of the practical issues related to disarmament, screening to separate combatants from civilians, and assisting in circumstances under which former foreign combatants may be able to renounce violence and, if they wish to seek asylum, be admitted into procedures to determine whether they are eligible for refugee status. This guidance is drawn upon and referenced, where appropriate, in subsequent sections, but draws on the legal frameworks highlighted above and several overarching principles and standards summarized below. Primacy of state responsibility: The State is responsible for the physical protection of refugees and the civilian and humanitarian character of asylum. While others, including the UN, may offer support, they cannot assume these functions. Access to territory and non-refoulement: Nothing should prevent persons seeking international protection from accessing the territory where they wish to submit an asylum claim or lead to their refoulement. Right to liberty and the security of persons and the prohibition of arbitrary detention: State action to ensure security must not lead to arbitrary detention \u2013 and both detention and internment may only be undertaken in accordance with and as authorized by national law, and in compliance with international law, including the minimum procedural safeguards. Access to assistance and services: Those identified as combatants should not be allowed to enter refugee sites or have access to services provided in them until such time as they have genuinely and permanently renounced military activity and have been admitted into asylum procedures. Beyond refugee assistance, it is important to note that this does not free States from responsibilities to provide humanitarian assistance and health care under the tenets of international humanitarian law (see section 5.1.4). Children, irrespective of whether they were combatants, have a right to assistance and protection, as victims of human rights violations. Protection considerations for women: Women\u2019s and girls\u2019 specific vulnerabilities and needs should be assessed and met, in particular survivors of or those who are at risk from SGBV. If women and girls are deprived of their liberty, they should be accommodated in separate facilities from men and, as far as possible, be under female supervision, and all security personnel should receive training on sexual exploitation and abuse, gender, and gender-based and sexual violence prevention and response. Clear modalities for reporting violence and seeking assistance should be provided to all, including access to reproductive health care, psychosocial support, etc. Efforts to ensure women and children are accommodated together and/or are reunited as soon as possible should be made (see IDDRS 5.10 on Women, Gender and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "6db1d89e-db85-4815-90e5-25f41ef134df", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.1.7 International law on transnational organized crime According to article 25 of the 2000 UN Convention against Transnational Organized Crime and its Protocols, each State Party is required to take appropriate measures within its means to provide assistance and protection to victims of offences covered in the convention, including but not limited to participation in an organized criminal group, money laundering, corruption, trafficking in persons and smuggling of migrants. State Parties must additionally establish appropriate procedures to provide access to compensation and restitution for victims of offences under the convention and must enable the view and concerns of victims to be presented and considered at appropriate stages of criminal proceedings against offenders. Furthermore, in the Protocol to Prevent, Suppress and Punish Trafficking in Persons, Especially Women and Children, article 6 calls on States to implement measures to provide for physical, psychological and social recovery of victims of human trafficking, including appropriate housing, counselling and information, medical and psychological assistance, and employment and education opportunities.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "8a7d6d45-d93b-48e6-83ff-6d92369208f6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.1.8 Specific legal frameworks and protections for children Children associated with armed forces or groups shall benefit from special protection and assistance. They shall be regarded primarily as victims, and their best interests shall be a primary consideration. DDR of children is always a priority and should not wait until mechanisms for adult DDR are established. Identification of children should take place at the earliest possible moment. A child protection adviser or agency should be given access to the disarmament site, with children placed under the care of civilian child protection actors as swiftly as possible. Children\u2019s immediate protection needs shall be met, and support provided in relation to issues such as food, shelter, and health care, including SGBV concerns. For children outside of their country of origin, particular emphasis and attention may need to be given to the establishment of services such as interim alternative care and cross-border family tracing. Children shall receive specialized gender- and age-appropriate support from trained child protection actors, including on issues related to nationality determination and family reunification processes. Legal and protection issues shall be carefully considered, with the best interests of the child as a primary consideration and taking into account issues related to safety and confidentiality, as well as the need to reestablish contact with family members whenever, and as swiftly as, possible. IDDRS 5.20 on Children and DDR applies to all children, irrespective of age or legal status, and should be consulted for general guidance and information on relevant legal protections. In addition, the following issues related to children who find themselves outside their country of origin should be considered in relation to their legal status and any measures then required. Section 8.1 also provides specific guidance on support to children who may be in this situation.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "488cf280-ac3f-41c1-82f0-dd71bbbcf82b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 15, - "Paragraph": "5.2 Status of and issues related to specific groups or entities No single definition or typology can be used to describe situations or groups within which foreign combatants may be found. In some contexts, foreign armed groups may cross a border in order to find a safe haven, flee attack or regroup. In other situations, groups may be militarily active on both sides of a border. In some contexts, armed groups may recruit and contain foreign nationals who are either sympathetic to the cause being fought for or who have other reasons for participating in combat. It is important that each context is properly assessed; the importance of assessment is further considered in section 6.2. However, when dealing with situations in which foreign combatants may be present, several groups warrant specific attention, as highlighted in the sub-sections below.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "1c854592-86c5-4daf-bef0-35d48bbe0e0c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 16, - "Paragraph": "5.2.1 Mercenaries A mercenary is defined under international humanitarian law (Geneva Conventions Additional Protocol I relating to the Protection of Victims of International Armed Conflicts) as \u201cany person who is especially recruited locally or abroad to fight in an armed conflict and is motivated to take part in hostilities essentially by the desire for private gain, and is promised, by or on behalf of a Party to the conflict, material compensation substantially in excess of that promised or paid to combatants of similar ranks and functions in the armed forces of that Party\u201d. The use of mercenaries and involvement in such activity is prohibited under international law, and mercenaries do not enjoy some of the protections granted to regular combatants or prisoners of war. A Working Group on the Use of Mercenaries was established under the Human Rights Council in 2005. It is important to consider when examining the role of foreign combatants whether or not groups or individuals may fall under the definition of mercenary. When deciding whether this distinction can be made, it is important that both the context and potential utility of its use are taken into careful consideration. In many cases, an individual may be motivated by the desire for economic gain to some extent, but the factors underpinning recruitment are likely to be complex and multifaceted, and labelling and attempting to deal with the bulk of the rank or file within a group as mercenaries is likely to be both contested and have limited practical utility. However, there may be circumstances when the use of the relevant articles of international law on mercenarism to target a group\u2019s backers or recruiters may prove highly effective.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e8471f35-fc5d-42ec-99d0-61d35e808359", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 16, - "Paragraph": "5.2.2 Private military and security companies In recent years, concern has grown about the involvement of private military and security companies in conflict contexts and their use of foreign nationals. A private military or security company can be defined as \u201ca corporate entity which provides on a compensatory basis military and/or security services by physical persons and/or legal entities\u201d, and the varied services such a company provides range from physical armed guarding to knowledge and skills transfer on security measures and their deployment and use of foreign nationals. Obvious issues arise when groups are involved in combat or aggressive security operations; it may be difficult for their personnel, particularly foreign nationals, to be held to account for their behaviour and lack of respect for human rights. There have been a few notable initiatives to try and control and regulate the activities of these groups. One is the 2008 Montreux Document, whose development was led by the Government of Switzerland and the International Committee of the Red Cross, and which is intended to promote respect for international humanitarian law and human rights law in contexts where private military and security companies are present in armed conflicts. Out of the Montreux Document process emerged the International Code of Conduct for Private Security Providers. An association of private military and security companies continues to promote dialogue between them on their interests. However, while important, these efforts are voluntary in nature, and attempts to create an internationally legally binding arrangement have remained elusive. Several States have put in place legislation regarding private military and security companies and their use of foreign nationals. When considering these issues, practitioners should therefore identify and examine the appropriate national legislation for both the country in which the companies are operating and those from which foreign nationals are drawn.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2d024965-8758-49b4-b857-0c31934c994d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.3 Pastoralists Pastoralism in its different forms continues to be an important source of livelihood for significant numbers of people. There are an estimated 268 million pastoralists in Africa alone. Pastoralism is critically dependent on mobility and the use of transient resources in areas with often fragile ecosystems, and has evolved and changed over thousands of years. Use of resources often involves the crossing of international borders. Pastoralists and conflict are often conflated in discussions on border security. While competition and contestation over access to resources such as pasture and water can give rise to conflict between pastoralist groups and those who rely on other livelihood systems, such as settled farmers, the reasons for this are often complex, with pastoralists themselves often negatively affected by other conflict drivers and trends. In the context of cross-border movements, it is important to recognize existing pastoralist groups as among those with legitimate reasons to cross borders in pursuit of their livelihoods and to try and ensure that security protocols and screening procedures established to manage cross-border security do not impede freedom of movement more than necessary and do not result in specific groups\u2019 being singled out for suspicion or stigmatization. Such restrictions may exacerbate conflict and insecurity rather than prevent it.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9a1dd273-81af-41e0-b375-9a002521fe98", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.4 Cross-border traders Small-scale cross-border trade, which is often informal in nature and dominated by women, is an important means of livelihood in many border areas. It also enables and facilitates contact between communities that may be isolated because of conflict and insecurity. As with pastoralists, it is important that cross-border trade is not impeded more than necessary by procedures related to security and screening. In some instances, cross-border traders may be important sources of information to DDR practitioners on issues related to cross-border movements and associated challenges.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9ec9ba0c-5c51-4f88-800b-bf3889b02e02", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.2.5 Foreign terrorist fighters Foreign terrorist fighters are individuals who travel to a State other than their State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in terrorist acts or the providing or receiving of terrorist training, including in connection with armed conflict. In situations where foreign terrorist fighters may be present, specific actions and measures will be required by States, but these are not covered in this module. All said measures must be implemented in accordance with international human rights law, international humanitarian law and international refugee law. Specific references to the international counter-terrorism framework can be found in IDDRS 2.11 on The Legal Framework for UN DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "04a0bd98-cacc-4fb1-94d9-19eb3c8b141a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 17, - "Paragraph": "5.3 Notes on internment and its legal basis Internment is not the responsibility of DDR practitioners but rather the host State. If a national authority seeks advice and support in relation to internment, DDR practitioners shall seek advice and refer to human rights, legal and political affairs personnel. Overall guidance can be found in IDDRS 2.11 on The Legal Framework for UN DDR. The International Committee of the Red Cross (ICRC) defines internment as a specific kind of deprivation of liberty. Internment refers to the non-criminal detention of a person based on the serious threat that their activity poses to the security of the detaining authority in relation to an armed conflict. It is only lawful when imperative reasons of security require it (paras. 755 and 759, ICRC Commentary on Common Article 3 to the Geneva Conventions, 2020). In situations of armed conflict, it can be ordered by the executive branch \u2013 not the judiciary \u2013 without criminal charges being brought against the\u00a0internee. Internment is an exceptional measure that is sometimes used to control or manage foreign combatants. While combatants may be subject to internment on account of their membership in armed forces (for imperative reasons of security), the internment of civilians must only be undertaken on an individual basis. Collective internment based on ethnicity or nationality is prohibited under international law. If legal requirements are followed, some form of internment or other restrictions of movement may be placed on foreign combatants, including in some instances as a component of peace or ceasefire agreements. Any rules and procedures aimed at avoiding risks posed by foreign combatants or fighters, including restrictions on freedom of movement, places of residence and travel, deprivation of liberty, detention or internment, must be based on a clear legal framework and are subject to IHL, IHRL and refugee law. It is important for DDR practitioners to understand the legal basis for internment, as those responsible for DDR are likely to be in contact with both those interned and those responsible for internment. Because of the potential for internment to be abused and, particularly, for it to amount to arbitrary detention, several principles and safeguards must be in place and adhered to. In interactions with those responsible for internment, DDR practitioners must advocate for these principles and safeguards to be upheld. They are summarized in Box 1. TABLE 1: PRINCIPLES AND SAFEGUARDS FOR INTERNMENT Practical issues related to internment are considered further in section 7.2.3, and issues related to children deprived of their liberty are highlighted in section 8.1.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "7723f70c-6189-4cb3-93df-aade4a12b716", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "6. Interventions to resolve issues related to foreign combatants Interventions should always be led by proper planning and the development of evidence-based responses. IDDRS 2.10 on The UN Approach to DDR makes it clear that \u201cdo no harm\u201d is a standard against which all DDR programmes, DDR-related tools and reintegration support shall always be evaluated. Proper planning is critical to ensuring that these undertakings can be met and effective interventions appropriate to the context put in place. This is particularly important in the highly complex security environments in which DDR support is often requested, especially in situations involving cross-border population movements.", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "8b7af404-424d-4de2-aedd-763bc09b9ff3", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1 Considering potential options Repatriation and reintegration in the country of origin will be the most tenable and durable solution for the majority of foreign combatants and associated persons, as long as the situation in their country of origin allows. Key actions in support of this outcome are the main focus of section 7. In situations where individuals or groups are either unable or unwilling to repatriate, several other potential solutions may be explored and applied.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "b683e3b8-2a13-4999-8cb1-c5d29448745a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1.1 Local integration In some contexts, foreign combatants and associated persons, including dependants, may be offered the right to stay by host country Governments. This option will be highly dependent on the relationship of the group or individuals with local communities and authorities and the conflict situation in the country. If this option is to be considered by host Governments, it should be consistent with wider conflict and peacebuilding frameworks. If this option is used, there may be little or no requirement for DDR support or, alternatively, foreign combatants may go through a DDR process offered by the host country, if one exists. If admitted into DDR programmes in the host country, foreign combatants must understand that this is likely to mean they may be excluded from repatriation and reintegration support in their country of origin unless specific arrangements are made. It is also important that their and their families\u2019 legal status is properly dealt with in relation to right of stay and citizenship and access to services, etc.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "784d3e44-62db-42f5-8a85-160c465c2d7a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 19, - "Paragraph": "6.1.2 Refugee status in host country In some circumstances, foreign combatants who have renounced armed violence may be granted asylum and refugee status. If they wish to do so, foreign combatants can be admitted into eligibility procedures. However, in line with maintaining the overall integrity of the institution of asylum outlined in section 5.1.6, this process involves the robust exploration and establishment of the following: The individual has genuinely and permanently given up arms and his/her status as a combatant/fighter, and has become a civilian. The individual meets the definition of a refugee under the 1951 Refugee Convention. This includes a determination that the individual is not excluded from being offered protection as a refugee under refugee conventions. According to article 1F of the 1951 Convention, grounds for exclusion related to a person\u2019s criminal conduct include crimes against humanity, war crimes, crimes against peace, serious non-political crimes committed outside the country of claimed refuge, and acts contrary to the purposes and principles of the United Nations. It should be noted that exclusion is justified only if it is determined that an individual incurred individual responsibility for one or more of these acts; mere membership in a group that committed such acts is not sufficient.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ccedbfa6-93c1-43e1-93dd-4340fcf3e397", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.1.3 Relocation to a third country Relocation to a third country may be an option for a small number of foreign combatants and associated persons who are unable or unwilling either to return home or remain in the host country. However, third countries are often very reluctant to consider applications of this type from persons who have previously been active combatants. Such options may be explored by the host country through diplomatic contacts or occasionally by the UN if requested.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "dd1c0c7a-4838-4f13-97ee-4621ac180791", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.2 Initial assessment and information requirements This section highlights several key steps and processes to be considered in planning. Time should be spent considering the range and type of stakeholders and information sources available to answer some of the questions below. As much use as possible should be made of existing data sources. Issues of confidentiality and do no harm must be carefully considered in relation to the access and use of information. Much of the information in this section will be of interest not only to DDR practitioners but all those involved in wider conflict resolution and peacebuilding efforts. Data-gathering using multidisciplinary and inter-agency teams offers the best chance of obtaining reliable and comprehensive information as well as optimizing the use of time and resources. DDR practitioners should ensure, in particular, that available information related to group dynamics and structures is systematically collected and analysed (see section 6.2.2).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "041ddda9-04cc-413b-abe8-55153f9d86e7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 20, - "Paragraph": "6.2.1 Conflict and security analysis It is crucial to understand both the wider conflict and security context that is being dealt with as well as the specific issues related to the groups involved. It is important that the situation and contexts on both sides of the border are analysed and considered. Some of the issues that require initial assessment and analysis are highlighted in Table 1. TABLE 2: CONFLICT AND SECURITY ANALYSIS \u2013 ISSUES TO CONSIDER AND RATIONALE", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8f427def-0b7c-430e-a3c8-201a55bc1d97", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 22, - "Paragraph": "6.2.2 Assess group dynamics and structures As detailed information as possible will need to be gathered and processed on the group(s) that need to be engaged with. This will help facilitate tailored responses to their specific challenges and needs as well as an understanding of the risks involved in interventions with the group. Key issues are highlighted in Table 2. TABLE 3: ISSUES TO CONSIDER INVOLVING GROUP STRUCTURES, DEMOGRAPHY, HEALTH AND SOCIAL STATUS", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7f3b24fb-23b2-4d55-b7e9-7e0bfada5f1a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 24, - "Paragraph": "6.3 Eligibility for DDR and issues related to specific groups Establishing eligibility criteria is important for DDR but is notoriously difficult. In the case of foreign combatants, it is particularly important to ensure that processes are put in place to verify nationality prior to repatriation and any access to associated benefits or support that may follow. In general, DDR should be open to all persons who have taken part in conflict, including foreigners and nationals who have crossed international borders, with arrangements within programmes then established to determine options available for foreign nationals. Sensitization is needed both in countries of origin and host countries to ensure that all persons entitled to participate in DDR programmes are aware of their right to do so. Special attention shall be given to ensuring women are aware of their rights and opportunities to enter programmes. Entry into DDR programmes shall always be voluntary. In situations where conflict is ongoing, and individuals or groups may be emerging because of being captured in battle or surrendering, issues around eligibility can become particularly complex. In some instances, individuals may even be re-recruited or rejoin armed groups, and there may be strong arguments for denying such people access to DDR or support. At the same time in some contexts, recruitment methods such as abduction and coercion may also feature highly, and individuals may have limited choices or agency. Eligibility criteria must therefore be developed based on the context faced, and status determination should be undertaken by relevant national and local authorities with support from UN missions and agencies. Special attention should be given to children at all times (see IDDRS 5.20 on Children and DDR). While it is important that the eligibility criteria are context specific, it is equally important that they are clear, compatible with relevant legal frameworks (see section 5), and consistently and unambiguously applied.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "43bb182b-d466-41ab-918a-6d26cfb0bd16", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 24, - "Paragraph": "6.3.1 Mercenaries As highlighted in section 5.2.1, not every foreign combatant meets the definition of a mercenary. In reality, it may sometimes be difficult to distinguish between mercenaries and other types of foreign combatants. Even when a foreign combatant may fall within the broad definition of a mercenary, this does not limit the State\u2019s authority to include such a person in DDR despite any legal action States may choose to take against mercenaries and those who recruit them or assist them in other ways. It is important to provide viable options and exit strategies in order to break the cycle of recruitment and weapons circulation and provide the majority of individuals with sustainable alternatives so that the rank and file of such groups may often be included in programmes. DDR practitioners may consider establishing specific criteria to deal with such cases. Issues to consider might include: Who is employing and commanding mercenaries, and how do they fit into the conflict? Do mercenaries pose specific risks to the peace process, and are they factored into peace accords or frameworks? If there is resistance to account for mercenaries in peace processes, what are the underlying political reasons, and how can the situation be resolved? How can mercenaries be identified and distinguished from other foreign combatants/fighters? Do individuals have the capacity to act on their own? Do they have a chain of command? If so, is their leadership seen as legitimate and representative by the other parties to the process and the UN? Can this leadership be approached for discussions on DDR? Do its members have an interest in DDR? If mercenaries fought for personal gain, are DDR benefits or activities likely to be large enough to make them genuinely give up armed activities? If DDR is not appropriate, what measures can be put in place to deal with mercenaries, and by whom \u2014 their employers and/or the national authorities and/or the UN? Depending on the context, it may be appropriate to have different options available for the rank and file and leaders/recruiters, etc.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "462762b0-08f8-4528-9a7e-cd924a5849c9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 25, - "Paragraph": "6.3.2 Foreign terrorist fighters As mentioned in section 5.2.5, foreign terrorist fighters are individuals who travel to a State other than their State of residence or nationality for the purpose of the perpetration, planning or preparation of, or participation in, terrorist acts or the providing or receiving of terrorist training. DDR practitioners need to be aware that Member States have specific obligations under the international counter-terrorism framework, and that this may have implications for screening and repatriation processes in particular. Specific references to the international counter-terrorism framework are contained in IDDRS 2.11 on The Legal Framework for UN DDR.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0cd8f782-ec30-424f-8e77-49f01fe852ae", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "6.4 Criminal prosecutions and transitional justice Criminal prosecutions are not the remit or responsibility of DDR practitioners. At the same time, it is important that DDR should not be construed or perceived as providing pathways to impunity for international crimes and serious human rights violations and abuses. DDR practitioners need to be aware that some foreign combatants and associated persons may be subject to legal processes, particularly where they are accused of serious crimes and may be prosecuted in host countries, or returned to their countries of origin or to third countries to face justice. It is also important to note that the principle of non-refoulement applies, with those handing over individuals still obliged to ensure that they will not face torture or inhumane or degrading treatment if being repatriated. In many contexts, transitional justice approaches may be used to help ensure accountability for victims and promote truth seeking, reparations and guarantees of non-recurrence. Applied appropriately, transitional justice and DDR can support each other by helping to reinforce community security and social cohesion. To achieve this, close consultation and interaction is required at all stages of planning and implementation. Those responsible for planning DDR processes, including those dealing with foreign combatants, should seek early and regular consultation with those working on transitional justice. Further guidance may be found in IDDRS 6.20 on DDR and Transitional Justice.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d69485f6-0f13-43f8-bbb2-1a25f2f710b6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 25, - "Paragraph": "7.1 Identify and strengthen policy and coordination frameworks Identifying relevant policy and coordination frameworks in the region affected and at country levels is an important step in planning, as it will help to determine potential responses and priorities for further action and development. Close coordination and links among all those working on DDR and related issues in a region are essential. There should be regular coordination meetings on DDR among UN missions, national commissions on DDR or competent government agencies, and other relevant agencies. TABLE 4: ISSUES TO CONSIDER \u2013 POLICY COORDINATION FRAMEWORKS AND PROCESSES Specific agreements surrounding the repatriation of foreign combatants and protocols related to this are discussed and considered in section 7.2.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "fc48a166-c25f-4412-81dc-df9f90789c78", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 26, - "Paragraph": "7.2.1 Entry into DDR As highlighted in section 6.1, the establishment of options for foreign combatants and associated persons should follow a detailed analysis of the context in the host country and country of origin as well as of the groups involved, including their composition. As noted previously, return to their country of origin will be the most tenable and durable solution for the majority of people. However, in situations where individuals or groups are either unable or unwilling to repatriate, asylum may be granted where it can be verified that they have genuinely and permanently renounced military activities, provided it is determined that they are eligible for international protection as refugees or under international human rights law. In all these circumstances, some form of DDR \u2013 whether a formal programme, a DDR-related tool or reintegration support \u2013 is likely to be needed, with its precise scope and components determined by the context. Entry into or referral to such programmes may take different forms depending on the situation. In some circumstances, large groups may be offered entry into a DDR process as part of negotiations or formal agreements; in other cases, individuals or small groups may self-refer or be referred by others. Entry into DDR shall be voluntary, with an individual making an informed choice to participate. It should also be based on an assessment as to whether an individual meets the eligibility criteria and that there is no reason for their exclusion (see IDDRS 2.11 on The Legal Framework for UN DDR). Trust in a process may take time to establish. Foreign combatants are likely to have specific concerns about security and what will happen to them during DDR and, in particular, about repatriation to their country of origin. It is vital that questions of this nature are answered honestly and as fully as possible by all those concerned. It is also important that expectations are managed carefully from the outset. Information and communications with stakeholders need to be tailored to address their specific concerns. Further guidance on strategic communications can be found in section 8.5 of this module and in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "bb1a2a2a-d201-4a3a-b496-d822e773b2be", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 27, - "Paragraph": "7.2.2 Disarmament It is important that disarmament of foreign combatants is carefully planned and implemented, as it should be for any other group. Whether or not individuals and groups being dealt with have weapons will depend on the context. Small groups or individuals leaving armed groups may not always do so with their weapons. In some cases, groups may be disarmed at the border of the country to which they will return. Disarmament should involve the collection and registration of weapons and their safe and secure storage, transportation and disposal in line with international guidelines and standards . Discussion may need to take place and agreements reached over whom items such as vehicles or other equipment should be eventually handed over to. It may be authorities in the host country or the country of origin. It is important that it is properly agreed and discussed between the Governments and authorities concerned. In addition to the sections below, IDDRS 4.10 on Disarmament and IDDRS 4.11 on Transitional Weapons and Ammunitions Management may be referred to for further guidance.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "cc12ebf1-01f9-4823-9a14-cf981ddfa7b4", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 27, - "Paragraph": "7.2.3 Screening and verification The overall objective of screening in relation to DDR is to ascertain if an individual is eligible to participate in DDR (see IDDRS 2.11 on The Legal Framework for UN DDR and IDDRS 4.20 on Demobilization). In situations where the presence of foreign combatants is known or suspected, screening will also be intended to help separate foreign combatants from civilians. Initial screening: In an ideal situation, initial screening to identify foreign combatants should be done at or near the border or other entry points, with separate screening areas for women. In most circumstances it is the responsibility of the host State to do this. In practice, in some contexts this may prove to be almost impossible, and might even increase the risk of violence; depending on the context, the initial screening may occur farther away from the border or at a later point in time. Practicalities associated with the initial screening need to be carefully considered by all involved, including those from UN agencies and missions who may be involved in monitoring and the provision of technical advice and training on disarmament and screening to host Governments, including their security forces or agencies. Maintaining safety and security and upholding the civilian and humanitarian nature of asylum will be important considerations when determining the extent and nature of screening processes. Much will depend on relationships between the countries involved and cross-border communities, and for this reason the overall background and conflict context must be carefully analysed and understood (see section 6). Advice and guidance contained in the Human Rights Due Diligence Policy on United Nations Support to Non-UN Security Forces must also be carefully considered and followed. It is important that procedures and processes are thought through and are not perceived as obviously discriminatory, particularly if these appear to be based on ethnicity or religious affiliation. Issues related to data protection and the use of information from a protection and do no harm perspective must be carefully considered. As far as possible, self-determination and reporting should be encouraged. However, additional criteria and checks are an important mechanism for identifying and avoiding any possible perverse incentives associated with potential later admission to DDR and the inflation of group numbers in order to obtain actual or anticipated benefits. Given that being identified as a foreign combatant may lead to a high degree of stigma, the burden of proof required to assign the status of foreign combatant should be high and mechanisms for appealing decisions should be in place. Potential techniques for identifying foreign combatants are summarized in Table 4. TABLE 5: POTENTIAL TECHNIQUES FOR IDENTIFYING FOREIGN COMBATANTS/FIGHTERS Screening procedures and criteria shall be tailored to age and gender, including the specific needs of women and girls. Children, including children associated with armed forces or armed groups (CAAFAG), must be given priority for processing in accordance with the guidance provided in IDDRS 5.20 on Children and DDR. This will include the presence of child protection actors during the screening process, as well separate arrangements during the screening and the provision of ongoing protection and interim care of children unless they are accommodated with a parent/caregiver, and this has been determined to be in the child\u2019s best interests. It is particularly important to prioritize and screen for victims of human trafficking, as they may suffer re-victimization if treated as criminal offenders rather than victims of a serious crime. Those involved in determining and implementing identification procedures should be aware of the complex victimhood and vulnerabilities of persons trafficked and not operate according to stereotypes. Verification of nationality: Processes and procedures to determine nationality will be required prior to any repatriation process. Establishing practical processes to determine nationality should include dialogue with the persons involved and officials from their countries of origin. It might also include those responsible for reintegration programming in the country of origin and/or immigration officials and relevant government departments, as well as cooperation with specialized agencies, where appropriate. In some situations, support might also be usefully sought from local leaders in countries of origin who may be able to assist in verifying an individual\u2019s place of origin or extended family and clan networks. In situations of ongoing conflict and insecurity, the risks associated with screening should be carefully assessed. Health and vulnerability screening: This is normally a component of demobilization processes and includes physical health, including reproductive health, HIV/AIDS and STIs, sexual violence, and mental health. It is essential to plan for maternal health services availability on site in case of pregnant or lactating mothers (see IDDRS 4.20 on Demobilization and IDDRS 5.10 on Women, Gender and DDR). Whether an in-depth health screening is carried out in the host country or is undertaken in the country of return or relocation will to some extent depend on the context and security situation. However, at a minimum it is important that health status is ascertained, and any vulnerabilities are identified and catered for prior to travel. Documentation and registration: Screening and registration processes increasingly make use of the collection of biometric data (e.g., fingerprints), which can be an important tool in attempts to prevent recycling and multiple registration. The use of this type of technology is widespread, but when sharing information, issues related to how it may be used by third parties need to be carefully considered. Appropriate data protection procedures must be in place, and those being screened for entry into a DDR programme should give their informed consent for the collection of biometric data. Particular care must be exercised in the capture and use of data on children, and information collected for humanitarian purposes should not be shared for military or intelligence purposes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "6bcdb238-cff4-48cb-bebb-57f93eed72b2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "7.3 Safe repatriation As previously highlighted, the repatriation of foreign combatants is the preferred solution if they do not have a legal basis for remaining and as long as their return is not in violation of the principle of non-refoulement. Prisoners of war shall be released and repatriated without delay after the cessation of active hostilities.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "36e3455f-bc3d-4baa-834f-9ff20f6e2b9e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 29, - "Paragraph": "7.3.1 Confidence building It may take time to build confidence that it is safe to return. Foreign combatants and associated groups may wish to receive assurances regarding their legal status, physical security and options for reinsertion and/or reintegration support. In addition to the provision of accurate information, including about the situation in return areas, support might be offered to family tracing and the re-establishment of family contacts. This needs to be undertaken carefully, and in line with do no harm principles. In some contexts, and depending on the security situation, visits by local leaders from the country of origin to the locations where foreign combatants are located may be helpful. Specific protection risks and threats to women\u2019s return shall be planned for with viable options that prioritize do no harm.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "b19086b1-8336-41d3-a1ff-fb8a07e4661f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 29, - "Paragraph": "7.3.2 Repatriation agreements As part of regional DDR processes, agreements should be concluded between countries of origin and host countries to allow both the repatriation and the incorporation into DDR programmes of foreign combatants and associated groups. UN peacekeeping missions, where present, national Governments and regional organizations all have a key role to play in carrying out such repatriation agreements, particularly in view of the sensitivity of many of the issues involved. They should include clear descriptions of the roles and mandates of all key stakeholders. Agreements should contain guarantees for the repatriation in safety and dignity of those concerned, bearing in mind, however, that States have the right to try individuals for criminal offences, unless they have declared amnesties on specific issues. Guarantees in this context may include an amnesty for desertion or an undertaking that no action will be taken in the case of former combatants/fighters from the government forces who laid down their arms upon entry into the host country. The UN does not endorse provisions that include amnesties for genocide, war crimes, crimes against humanity and gross violations of human rights, and relevant Security Council resolutions relate to Member States\u2019 obligations to bring those responsible for terrorist crimes to justice. Those facing potential prosecution in their home countries are likely to be returned under additional legal agreements, including extradition arrangements in some cases, and not under the auspices of DDR programmes. If there are doubts or concerns about the status of individuals or their rights, specific legal advice should be sought or referral made. Repatriation agreements may also provide the basis for determining nationality in line with requirements highlighted under section 7.2.4. This would include methods of determining the nationality of those involved, deciding on the country in which those involved will participate in a DDR programme and determining the country of eventual destination. Additional considerations need to be made where civilian spouses and children are of different nationalities than the foreign combatants, taking into account their views and wishes and the best interests of the child. Repatriation agreements should also acknowledge the right of civilians to apply for asylum and to have their refugee claims determined by the competent authorities in line with international legal standards.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "18e4e926-a76d-4582-a43f-5c93593ed758", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 30, - "Paragraph": "7.3.3 Travel as a component of DDR Safe and secure travel should be properly planned for and resourced. Governments and UN missions will be responsible for repatriation movements of foreign combatants/fighters and their families. Such movements should be based on informed consent and will require pre-departure and travel support, including internal transportation, assessments to identify conditions of public health significance and determine fitness to travel, and provision of medical escorts where necessary. Although it should already have been considered and discussed, an assessment of any risks of ill treatment, persecution or other human rights violations that could result from the return to country of origin must be conducted. Foreign combatants and associated persons should be screened against a set of criteria, including medical status, documentation and vulnerabilities. Authorities in both locations should agree on travel documents required and how immigration will be facilitated. Movements in the context or voluntary return and repatriation should broadly consist of the three phases highlighted in Table 5. TABLE 6: REPATRIATION PHASES AND KEY CONSIDERATIONS Every effort should be made to ensure that family unity is preserved in repatriation movements. UN missions, where existing, should support the Governments of the host country and country of origin by assisting with the logistics, including transportation. Where foreign combatants have family members or other dependants in refugee sites and settlements, there should be close consultation with relevant entities so that the voluntary repatriation of family members can be coordinated. Maintaining family unity during repatriation is normally in the best interest of the child and should be respected. In cases where it is not possible to repatriate combatants and family members as family units, mechanisms to reunite the family upon return should be established and proper interim alternative care, preferably with extended family, should be ensured for children, consistent with their best interests. However, it is important to note that in some instances women, in particular, may have been coerced into relationships with foreign combatants, and in these cases separate arrangements for safe return and reintegration will be needed. Spouses (including of traditional marriages) and their children who are not citizens of the country to which they are travelling should be allowed by the Government concerned to enter and live in that country as a family unit with an appropriate legal residence status consistent with relevant immigration laws if that is their wish, having been informed of all available options.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "84e26289-ccbf-4487-8484-97340f0cfe0c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 31, - "Paragraph": "7.4.1 Situation analysis in return areas The successful reintegration of foreign combatants and associated persons is likely to be a key priority in wider efforts to build and sustain peace. If it is unsuccessful, some among the group may be at a high risk of recycling and recruitment in the future, both in their countries of origin and across the wider region. Prior to return, it is therefore important that assessments are made of the situation in the country of return. Planning for reintegration support should be based on a broad range of conflict-, gender- and age-sensitive assessments conducted with sufficient time to allow for careful programme design. Several key issues will need to be examined and are highlighted in Table 6; however, comprehensive guidance on assessments for reintegration can be found in IDDRS 4.30 on Reintegration and in IDDRS Level 3 modules on Structures and Processes. TABLE 7: KEY ISSUES TO CONSIDER IN AREAS OF RETURN Extensive efforts may be required to prepare the ground for the arrival of foreign combatants and associated persons and to establish new approaches to community relations and problem solving. A return to previous social structures may be unrealistic and even undesirable, especially if these played a role in conflict dynamics in the first place. Differences between groups based on political, religious, ethnic or other grounds may have impacted social cohesion and could have been further impacted or affected by conflict. Identifying key stakeholders and enlisting their support for both DDR and wider efforts to sustain peace will be extremely important. In some cases, substantial work may be required to prepare the ground for reintegration efforts and to ensure that interventions help to promote and underpin peace. See also IDDRS 2.30 on Community Violence Reduction and IDDRS 4.30 on Reintegration.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ca552f61-1389-4971-8ced-5199a75c7ffe", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 33, - "Paragraph": "7.4.2 Reintegration support In addition to the sections below, IDDRS 4.30 on Reintegration may be referred to for further specific guidance. Reintegration is a process, not a single event or point in time. Its overall success is dependent on a variety of interrelated factors that include social, economic and political aspects, some of which are considered in Table 7. TABLE 8: FACTORS UNDERPINNING SOCIAL, ECONOMIC AND POLITICAL REINTEGRATION", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e8b3266b-9d23-49b4-ae89-e9b0a0407995", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 34, - "Paragraph": "8.1 Responding to the needs of children In addition to the brief specific points made below, IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR should be referred to for further specific guidance. In situations of armed conflict, children continue to be recruited and used by parties to conflict, including armed groups designated as terrorist organizations by the UN. All persons under the age of 18 who are affected by armed conflict, including children associated with armed forces or armed groups, must be considered primarily victims of human rights violations. The best interests of the child should be a primary consideration in all decisions taken about them. Issues related to the DDR of foreign CAAFAG are likely to pose specific challenges that will need attention, including from child protection specialists. Foreign CAAFAG are likely to be particularly vulnerable, and restoring links with their families and communities may prove especially challenging. Under the Convention on the Rights of the Child and its Optional Protocol on the involvement of children in armed conflict, States must provide children special protection and assistance when deprived of their family\u2019s care. States shall not discriminate against children or deprive them of their rights to protection and assistance based on their race; colour; sex; language; religion; political or other opinion; national, ethnic or social origin; property; disability; birth; or other status of the child or their parent, guardian or caregiver. Foreign CAAFAG should be repatriated as soon as possible to their country of origin, if in their best interest. However, the determination about whether to do this depends on many factors, including the security context within their country of origin and an assessment of protection issues related to their return, both for them and their wider family and community, including issues of non-refoulement. Experience suggests that organizing and facilitating return can be a complex process that requires the support of multiple stakeholders. Specific processes and agreements will need to be put in place and standard operating procedures will be needed to formalize processes between and among the different actors to help to guarantee the security, safety and well-being of each child, and to ensure that their views are considered. All repatriations must be voluntary. When required, States should support long-term reintegration options for children, and care and guardianship arrangements should be formalized in line with national child protection systems and alternative care principles, including the best interests of the child. Specialist advice should be sought and, where States lack capacity, support should be provided to help build it. Children shall not be deprived of their liberty unlawfully or arbitrarily. Children associated with armed forces and groups must not be detained solely for their association with armed forces or groups. Member States should adopt protocols for the handover of children allegedly associated with armed forces and groups to civilian child protection actors, in order to prioritize their reintegration. Member States should also end the military detention of children and adopt formal protocols for the handover of children from military custody to civilian child protection actors. If DDR practitioners become aware that children are being interned, the United Nations Children\u2019s Fund (UNICEF) shall be notified and, where there is a mission, any designated child protection adviser or focal point. If there is evidence that a child has committed an illegal act, the child shall be treated in accordance with international juvenile justice standards, which emphasize alternatives to detention and prioritize the support and social reintegration of the child. Irrespective of the circumstances of the arrest, detention or imprisonment, all efforts shall be made to end the detention of children, using it only as a measure of last resort and for the shortest appropriate period of time. Children shall not be held with adults when detained, and alternatives to detention that could contribute to children\u2019s reintegration must be prioritized. Facilities where children are deprived of liberty must be equipped with personnel who are trained in child protection and specialize in education and psychology, and access should be facilitated for child protection actors, such as the United Nations and the ICRC.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "a7a8e3ca-93e4-4fda-92e2-7a2ea4b046a8", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 35, - "Paragraph": "8.2 Considerations for family members and dependants in refugee sites Foreign combatants and associated persons may be traveling with family members or other dependants. Sometimes family members may independently make their way to the host country. If the family members have entered the host country to seek asylum, they should be considered asylum seekers or refugees after and if their claim for refugee status has been considered and accepted. If foreign combatants mix with or stay near refugee populations and sites, this is likely to impact negatively on the security and other rights of refugees and host communities. Therefore, it is essential to do all that is possible to ensure that refugee sites and settlements do not become militarized, as this may lead to security problems, including military attacks. Conversely, sites established for the encampment or even internment of foreign fighters should not become settlements for those displaced from across the border. Several good practices related to refugee sites and settlements are highlighted in Table 8. TABLE 9: ISSUES TO CONSIDER REGARDING REFUGEE SITES/SETTLEMENTS AND ACCOMPANYING FAMILY MEMBERS In practice, achieving the conditions outlined in Table 8 can be very difficult and complex, particularly in situations where conflict may be ongoing and security challenging, and where the control of the host State over territory and armed groups may be tenuous. While the primary responsibility for security and dealing with these issues rests with the host State, a multi-stakeholder approach is often required to provide appropriate advice and support. Considering the increasing complexity of armed conflicts and cross-border movements, engagement with a broad network of stakeholders is more important than ever. This may include, when appropriate, all pillars of the UN (human rights, development, humanitarian, and peace and security), other international and regional organizations, other States and other relevant actors, such as the ICRC. In these circumstances good practices may include the establishment of structures such as Inter-Agency Task Forces to bring together all relevant actors under the leadership of the host State and the development of plans, including those specifically related to the maintenance of the humanitarian and civilian character of asylum and those dealing with foreign combatants. When considering the nature of technical and practical support and cooperation with host country security forces, Human Rights Due Diligence Policy guidance and principles must be followed. It is important to try to maintain family links between refugee family members housed in refugee sites and settlements and combatants who may be in internment camps or other places of detention. Family links can be maintained through family tracing, exchanges of messages and family visits to internment camps. At the same time, it is important to recognize that some relationships within an armed group, including marriage and intimate relationships, may have been forced, and the interests and wishes of those concerned need to be carefully considered. Women and girls who have been forcibly abducted and are married under circumstances not recognized by customary or national law have the right, with their children where applicable, to be safely separated from their so-called husbands (see also IDDRS 5.10 on Women, Gender and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "07dbf885-379c-4015-9276-3ad6e42eeebb", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 36, - "Paragraph": "8.3 Gender considerations In addition to the sections below, IDDRS 5.10 on Women, Gender and DDR should be referred to for further guidance. It is important that the specific challenges faced by women and girls and men and boys are considered when developing the required responses. In many situations, women and girls are survivors of high levels of sexual and gender-based violence and may have been forced into relationships. When they return home, they often face high degrees of stigmatization and denial of their rights, including property and access to services and opportunities. Several specific issues need to be considered and included when planning interventions. These are outlined in Table 9. TABLE 10: SPECIFIC ISSUES TO CONSIDER RELATED TO THE NEEDS OF WOMEN AND GIRLS Dramatic changes in roles during DDR may also profoundly affect men and boys, as loss of a sense of control or purpose can be powerful feelings that, if not addressed, can lead to significant challenges in terms of loss of self-esteem and poor mental health, and may make re-recruitment, domestic violence and substance abuse much more likely for some individuals. This effect may be more pronounced among some who, in addition to leaving the group, may have to relearn and, in some senses, renegotiate roles in their families or communities. Young men who have largely grown up in an armed group might never even have lived in their \u201ccountry of origin\u201d and may find this transition particularly difficult. Specific responses to these types of challenges might include mentorship and life skills training alongside efforts to involve such individuals in broader community activities and groups as well as livelihood support.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "fbe56faf-96ef-41a5-b091-9132c36fd93b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 38, - "Paragraph": "8.4 Those who are chronically ill and with disabilities Further guidance can be found in IDDRS 5.80 on Disability-Inclusive DDR and IDDRS 5.70 on Health and DDR. Ex-combatant groups often have significant issues with poor health and disability. In the case of foreign combatants, several issues need to be taken into account during the initial support provided in the host country, during repatriation and in support of reintegration in their countries of origin. The disability and health profile of the armed group in question should be ascertained as early as possible in the planning process. It is important to know what types of disability are present and the main diseases and illnesses affecting the group, not only so that proper health care and disability support can be provided immediately, but also so that medium- and longer-term service provision and reintegration support can be planned for and safe repatriation arrangements ensured. Those returning to an area who have significant health needs and who require support in the short and longer term will have an impact on health and social services in their countries of origin, and this needs to be properly planned and catered for, both to ensure appropriate care can be provided but also to avoid potential resentment in receiving communities who may feel that existing facilities are being swamped with new arrivals. In the case of communicable disease, understanding disease profiles among groups and in return areas will help to ensure that any risks can be identified and catered for. This should include attention to issues such as HIV transmission as well as care and treatment. However, it is important to avoid stigmatizing groups who may be affected or at risk. Principles of safety, confidentiality, respect and non-discrimination are of paramount importance.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ab0440a1-6740-4f6e-977c-3870b93b8d59", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "8.5 Public information and strategic communication requirements Further guidance can be found in IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR. Effective communication and careful messaging are important when engaging with foreign combatants and associated persons, and with host communities in areas of origin and return. At the same time, poor communication can undermine the objectives of DDR and even, in some instances, cause security risks and harm. Information will need to be provided on a range of issues, including the DDR process and procedures and methods of presenting for DDR. In situations where the conflict is ongoing, messaging may also be used to make appeals for groups to enter into dialogue, to release children or to explain to individuals or groups their options if they decide to come forward for DDR or associated programmes. The proactive consideration and management of risk and do no harm considerations should be mainstreamed throughout the process. Public information campaigns and programme support should foster non-violent, healthy expressions of masculinities and femininities. Obtaining advice and input from stakeholders in areas of origin may prove invaluable, and key informants might include civil society organizations, journalists, local leaders and even former combatants themselves. In some situations, messaging and information campaigns of this nature have used such approaches specifically as a means of reassuring combatants of their safety when they pass through DDR and as a mechanism for engaging with communities and having dialogue on issues related to return. However, when planning to use such techniques, risks to both the individuals concerned and any persons closely associated with them must always be carefully considered. The type of delivery platform and mechanism used for messaging should be based on an assessment of what is most likely to reach the target audiences. In many settings, it is likely to include radio, leaflets, mobile phone messaging, posters and word of mouth. Message content and delivery mechanisms likely need to be dynamic and adaptable to rapidly changing contexts and needs. It is important to remember that foreign combatants and associated persons may not be able to communicate in the languages used in the host country and that personnel able to speak their language will be required.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "0b4ebddf-b6a3-426e-bbd4-290791ea802b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": null, - "Paragraph": "8.6 Prevention of recruitment In border areas where there is a significant risk of recruitment, assessment and analysis might help to better identify and understand risks and possible preventive measures. This is best undertaken as part of broader approaches to conflict analysis that seek to explore the underlying causes of tensions and conflict and the role and motivations of stakeholders. When undertaking this type of analysis, it is important to avoid stigmatizing communities and groups and to be aware of potentially difficult or strained relationships between communities and authorities. Practical measures that might be considered following careful assessment are briefly outlined in Table 10, and further guidance can be found in IDDRS 4.30 on Reintegration. TABLE 11: PRACTICAL MEASURES THAT MAY BE CONSIDERED TO PREVENT RECRUITMENT", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "5ff433f5-6f31-401a-9d44-184d2f181956", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023", - "PageNum": 40, - "Paragraph": "Annex A: Abbreviations CAAFAG\tchildren associated with armed forces or armed groups ICRC\tInternational Committee of the Red Cross IHL\tinternational humanitarian law SGBV\tsexual and gender-based violence UNHCR\tUnited Nations High Commissioner for Refugees UNICEF\tUnited Nations Children\u2019s Fund UNODC\tUnited Nations Office on Drugs and Crime", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021.json b/static/data/json/IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021.json deleted file mode 100644 index 67239f0..0000000 --- a/static/data/json/IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021.json +++ /dev/null @@ -1,876 +0,0 @@ -[ - { - "ID": "5c273e47-4c46-4fdc-a6a9-2595ae1ea7f0", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "Summary 1. Module, scope and objectives\t\t\t\t\t\t\t\t2\t 2. Terms, definitions and abbreviations\t\t\t\t\t\t\t2 3. Introduction\t\t\t\t\t\t\t\t\t\t\t3 4. Guiding principles\t\t\t\t\t\t\t\t\t\t4 4.1 Voluntary\t\t\t\t\t\t\t\t\t\t8 4.2 People-centred\t\t\t\t\t\t\t\t\t8 4.3 Accountability and transparency\t\t\t\t\t\t\t10 4.4 Nationally and locally owned\t\t\t\t\t\t\t10 4.5 Well planned\t\t\t\t\t\t\t\t\t10 4.6 Public information and community sensitization\t\t\t\t\t10 5. Legal frameworks\t\t\t\t\t\t\t\t\t\t11 5.1 International human rights law\t\t\t\t\t\t\t12 5.2 International humanitarian law obligations\t\t\t\t\t\t13 5.3 Domestic legal frameworks\t\t\t\t\t\t\t\t14 5.4 Institutional mandates, internal rules, policies and procedures\t\t\t14 5.5 Other instruments informing disability inclusion in humanitarian crises\t\t15 6. Planning for disability-inclusive DDR processes\t\t\t\t\t\t16 6.1 Disability-inclusive situational assessment \t\t\t\t\t\t\t16 6.2 Planning for the accessible design of DDR sites\t\t\t\t\t19 6.3 Gender and disability\t\t\t\t\t\t\t\t20 7. Disability-inclusive DDR programmes\t\t\t\t\t\t\t22\t 7.1 Access to information specific to disability services and support\t\t\t22 7.2 Physical layout of DDR sites\t\t\t\t\t\t\t22 7.3 WASH access\t\t\t\t\t\t\t\t\t22 7.4 Equal access to health services\t\t\t\t\t\t\t23 7.5 Reinsertion\t\t\t\t\t\t\t\t\t\t24 7.6 Reintegration\t\t\t\t\t\t\t\t\t25 8. DDR-related tools\t\t\t\t\t\t\t\t\t\t28 8.1 Community violence reduction\t\t\t\t\t\t\t28 8.2 DDR support to mediation\t\t\t\t\t\t\t\t28 8.3 Transitional weapons and ammunition management\t\t\t\t29 9. Monitoring and evaluating disability-inclusive DDR processes\t\t\t\t29 Annex A: Abbreviations\t\t\t\t\t\t\t\t\t31 Annex B: Barrier checklist\t\t\t\t\t\t\t\t\t31 Annex C: Disability and data\t\t\t\t\t\t\t\t\t33 Annex D: Disability inclusion markers\t\t\t\t\t\t\t\t36 Endnotes\t\t\t\t\t\t\t\t\t\t\t37 5.80 Disability-Inclusive DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f81e74d0-ba79-45fb-ab6f-133a1d16363d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "Summary DDR requires specific planning and interventions to eliminate barriers to participation and to address the specific needs of persons with disabilities. Disability-inclusive DDR processes shall be led by national and local authorities, in line with national and local policies and strategies, and build on existing systems and structures. A DDR process and all forms of support provided for that process shall adhere to humanitarian principles, including non-discrimination on the basis of disability and the best practices of disability inclusion in humanitarian action. Consistent with the principles of disability-inclusive humanitarian action, the inclusion of persons with disabilities in DDR shall encompass mainstreaming and targeted interventions. Armed conflict relates to disability in two respects. First, it is a cause of disability, and, second, it is a complicating factor for persons living with disability who face specific support and protection needs during conflict and its aftermath. Impairments giving rise to disability occur in direct and indirect ways in the context of conflict. Direct impairments arise as a consequence of the immediate physical and psychosocial consequences of violent conflict, such as being hit by a bullet, stepping on a land mine or being raped. Impairment also arises indirectly from conflict, and can include psychological trauma from witnessing violence, as well as a lack of basic needs (shelter, adequate clothing, sanitation, water, food, health care, etc.) and exposure to the elements. This context shall be borne in mind in the design and implementation of DDR processes. Conflict can also serve to amplify existing barriers for persons with disabilities, making it even more challenging to access the benefits of a DDR process. For example, destruction of infrastructure such as roads and the breakdown of social safety nets can result in the exclusion of persons with disabilities. Furthermore, conflict often weakens community-based organizations, and organizations of persons with disabilities (OPDs) may be particularly affected, owing to their frequently marginalized status in society. The intersectionality of disability and gender can heighten risk. Women and girls with disabilities face a double stigma, often experience abuse and social exclusion, and are financially and physically vulnerable. Additionally, women and girls are often caregivers and may take on additional caregiving roles for returning DDR participants with disabilities. Disability-inclusive DDR shall be based on a careful situational analysis of the context. This shall include an analysis of any potential disability as well as age- or gender-related barriers to participation in DDR. The capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. Protection risks that could potentially be created by this assistance shall also be assessed. For example, it is important to analyse whether DDR support to former members of armed forces and groups with disabilities may inadvertently create or exacerbate household or community tensions.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "aa9d41cc-641f-48d2-9705-a941f5d50c3c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "1. Module scope and objectives This module outlines the requirements for the planning, design and implementation of disability-inclusive DDR processes in both mission and non-mission settings. It focuses on disability inclusion as part of a DDR process for ex-combatants, persons formerly associated with armed forces and groups, dependants and community members. It also examines the different modalities through which disability-inclusive approaches and support may be provided.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "cf550380-a6af-4e6e-9418-9c8c956345a2", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "2. Terms, definitions and abbreviations This section contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. The following terms and definitions are drawn from the Convention on the Rights of Persons with Disabilities, the Committee on the Rights of Persons with Disabilities, the UN Disability Strategy and UNICEF\u2019s Guidance on Including Children with Disabilities in Humanitarian Action. Accessibility means ensuring persons with disabilities have access, on an equal basis with others, to the physical environment; transportation; information and communications, including information and communications technologies and systems; and other facilities and services open or provided to the public, in both urban and rural areas. This includes the identification and elimination of obstacles and barriers to accessibility. Accessible formats refer to the provision of information in a variety of formats to make it accessible to persons with disabilities, including displays of text, Braille, tactile communication, large print, plain language, human reader, written and audio. CRPD compliant refers to policies and practices that follow the general principles and obligations set forth in the Convention on the Rights of Persons with Disabilities (CRPD) and the interpretive guidance of the CRPD Committee. Disability is an evolving concept and results from the interaction between persons with impairments and attitudinal and environmental barriers that hinder their full and effective participation in society on an equal basis with others. Discrimination on the basis of disability means any distinction, exclusion or restriction on the basis of disability that has the purpose or effect of impairing or nullifying the recognition, enjoyment or exercise, on an equal basis with others, of all human rights and fundamental freedoms in a political, economic, social, cultural, civil or any other field. It includes all forms of discrimination, including denial of reasonable accommodation. Disability-disaggregated data means data that are collected and presented separately on the basis of disability/impairment type. The availability of disability-disaggregated data (together with sex and age disaggregation) is an essential precondition for building disability-inclusive policies and interventions. Disability inclusion is an approach that aims to identify and dismantle barriers faced by persons with disabilities, support their specific requirements and ensure their full participation. It also means ensuring the meaningful participation of persons with disabilities in all their diversity, the promotion of their rights, and the consideration of disability-related perspectives in compliance with the CRPD. Disability-inclusive DDR processes are planned, implemented, monitored and evaluated in a disability-inclusive manner. Intersectionality is the interaction of multiple factors, such as disability, age and gender, which can create multiple layers of discrimination, and, depending on the context, entail greater legal, social or cultural barriers. These can further hinder a person\u2019s access to and participation in humanitarian action and, more generally, in society. Organizations of persons with disabilities (OPD) are organizations comprising a majority of persons with disabilities \u2212 at least half their membership \u2212 and governed, led and directed by persons with disabilities. Organizations of persons with disabilities should be rooted in, committed to and fully respect the principles and rights recognized in the CRPD. Persons with disabilities include those who have long-term physical, mental, intellectual or sensory impairments that in interaction with various barriers may hinder their full and effective participation in society on an equal basis with others (CRPD, art. 1). Reasonable accommodation means necessary and appropriate modification and adjustments not imposing a disproportionate or undue burden, where needed in a particular case, to ensure to persons with disabilities the enjoyment or exercise on an equal basis with others of all human rights and fundamental freedoms (CRPD, art. 2). Rehabilitation in the context of disability refers to a range of effective and appropriate measures, including through peer support, to enable persons with disabilities to attain and maintain maximum independence; full physical, mental, social and vocational ability; and full inclusion and participation in all aspects of life (CRPD, art. 26). Universal design means the design of products, environments, programmes and services to be usable by all people, to the greatest extent possible, without the need for adaptation or specialized design. Universal design shall not exclude assistive devices for particular groups of persons with disabilities, where needed (CRPD, art. 2).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ca615a7b-c9ac-4ea5-819e-e58b566b0427", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "3. Introduction Male and female persons with disabilities have unique needs and experiences. In situations of risk, they are entitled to specific care and protection, and their intersecting rights and individual circumstances shall be given due consideration. International law recognizes persons with disabilities as individuals endowed with agency and legal capacity and acknowledges the risk and differentiated impact that armed conflict and human rights abuses can have on persons with disabilities. Persons with disabilities face heightened risks and vulnerability during conflict. Inadequate attention to the needs of persons with disabilities in humanitarian operations and in DDR may result in harms. Barriers such as inaccessible shelters, lack of accessible warnings in alternate formats, barriers to evacuation, communication barriers, loss of assistive aids (for example, wheelchairs and walking canes), and challenges in obtaining long-term recovery services (for example, fistula repair or psychosocial recovery services) are some examples of how inattention to disability access inhibits participation. Research highlights the shortcomings of traditional approaches to meeting the needs of persons with disabilities that focus narrowly on specific medical and rehabilitation needs, to the exclusion of social and economic needs. It also demonstrates that separate and segregated programming for individuals with disabilities leads to isolation and disaffection. This is instructive for disability inclusion in DDR and in the broader context of post-conflict peacebuilding and development. Disability-inclusive DDR processes shall therefore not be siloed, but comprehensive and integrated. A twin-track approach is appropriate, meaning that DDR processes shall be fully inclusive of persons with disabilities and that targeted, specific interventions may also be needed to address specific needs (see Figure 1). Targeted interventions may include empowering and supporting persons with disabilities to participate in a DDR process or providing assistive technologies (such as mobility or hearing aids). Applied to DDR, this means that persons with disabilities must be able to access a DDR process on an equitable basis with other participants. The planning, design, implementation and evaluation of a DDR process shall reflect this objective. However, mainstreaming alone is insufficient to ensure that no one is left behind. Therefore, a DDR process shall also, where necessary, address the individual and collective requirements of DDR participants and beneficiaries with disabilities by providing targeted interventions. While this may include programmes to address specific requirements, what the twin-track approach does not do is support separate or segregated programming. Rather, a DDR process shall aim for disability inclusion within an integrated DDR process. FIGURE 1: TWIN-TRACK APPROACH \u2013 EXAMPLES IN THE DDR CONTEXT Many potential DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. These individuals are likely to have been exposed to trauma. It is therefore important for DDR practitioners to understand and be trained to respond to the specific needs of persons with disabilities and their families. The heterogeneity of disability means that former members of armed forces and groups with disabilities will have differing needs and face different kinds of barriers to participation in DDR. For example, former members of armed forces and groups with disabilities who find themselves restricted in their mobility may not be able to call attention to their specific requirements in DDR processes. DDR planning must also account for the reality that former members of armed forces and groups with disabilities may face physical and communication barriers in accessing information about the potential support offered through a DDR process. In addition, the self-demobilization of ex-combatants with disabilities, a common phenomenon, means that they may be difficult to identify and thus be excluded from benefits unless specific measures are taken to identify and include them. Association with an armed group combined with disability results in intersectional stigma and disadvantage, including for women and girls. Emerging research demonstrates that females with ex-combatant status are far less likely to have ties with the disability community or to embrace a disability identity that might facilitate outreach to OPDs for support. Women with disabilities, including female ex-combatants and women and girls associated with armed forces and groups, are also at greater risk of sexual violence due to the insecurity brought about by armed conflict. Survivors of sexual violence (both male and female) are at risk of psychosocial disability, vulnerability to HIV and other sexually transmitted diseases, and physical disability owing to violence, including the need for fistula surgery. While it is sometimes assumed that persons with disabilities do not require access to sexual and reproductive health services, including HIV and AIDS services, this is a falsehood. Former members of armed forces and groups with disabilities experience multidimensional discrimination in making a successful transition back into society in ways that are both similar to and distinct from their counterparts without disabilities. Discrimination on account of disability works in combination with other status attributes based on association with, for instance, a particular fighting force, gender, poverty, ethnicity, age and so forth. The well-documented barriers that persons with disabilities experience during peacetime in accessing education, employment, health and rehabilitation, and an adequate standard of living are exacerbated for former members of armed forces and groups with disabilities. These individuals confront re-entry into a fragile society with weak institutions and infrastructure and, all too frequently, an under-developed disability law and policy environment. Understanding DDR through a disability lens facilitates the identification of barriers to participation and the possibilities for dismantling them to create an inclusive process. For some examples of these barriers, see Table 1. For a checklist of steps that may be taken to remove these barriers, see Annex B. TABLE 1. BARRIERS TO DISABILITY-INCLUSIVE DDR Making DDR efforts responsive to the needs of persons with disabilities presents some challenges, and yet recognition should be given to the problem-solving skills, resilience and coping strategies of these individuals and the role that peer support can and should play in facilitating their reintegration into society. Provided persons with disabilities are afforded opportunities to participate in DDR, they can and should emerge as leaders in their communities. Former members of armed forces and groups with disabilities should be given meaningful roles in the post-conflict period and recognized as having a stake in the post-conflict social order and development efforts.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "badfa765-a612-40a1-937b-1b80269a4515", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the inclusion of persons with disabilities during DDR processes.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ec11a83b-46a6-44c7-b357-5784c3bb9b8d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.1 Criteria for participation/eligibility DDR practitioners shall ensure that they do not exclude or discriminate against persons with disabilities. Persons with disabilities shall obtain meaningful access to DDR services, programmes, aid and benefits on an equal basis with other persons. No group is to be given special status or treatment within a particular DDR process, and individuals shall not be discriminated against on the basis of disability, gender, age, race, religion, nationality, ethnic origin, political opinion, or other personal characteristics or associations. This is particularly important when establishing eligibility criteria. All members of armed forces and groups \u2014 male, female, and persons with or without disabilities \u2014 shall be equally able to access clear information about their eligibility for DDR, as well as the benefits available to them and how to obtain them. Eligibility criteria shall be clearly provided and persons with disabilities shall understand what they can expect regarding the accessibility of facilities and services.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "0749b935-4415-41a8-927b-4b1b5932ce5e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.2 Unconditional release and protection of children Actions shall be taken to identify and dismantle barriers to entry to DDR processes for children associated with armed forces and groups with disabilities. These children will be at heightened risk of community exclusion and family separation. Support shall include referral to ongoing community-based support and disability- and age-appropriate services (for example, community-based rehabilitation and inclusive education) to help ensure that reintegrated children with disabilities can stay with their families and participate fully in the community. DDR practitioners shall be aware that, in all actions concerning children with disabilities (irrespective of former association with armed forces or groups), the best interests of the child shall be a primary consideration (see IDDRS 5.20 on Children and DDR). Where possible, DDR practitioners shall also provide support to the caregivers and family members of children with disabilities who were formerly associated with armed forces and groups both during and after the family reunification process.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "e06d129a-e056-4de4-adc1-a98f98187d5a", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 8, - "Paragraph": "4.2.3 Gender responsive and inclusive DDR practitioners shall (i) identify potential barriers to participation in all phases of DDR and (ii) take proactive, specific measures to eliminate barriers and facilitate access and inclusion. DDR participants and beneficiaries with disabilities shall have access to the same facilities and services as others. Separate or segregated programming runs counter to the principle of inclusion, reinforces stigma and is isolating. DDR practitioners shall understand the stigmatization and discrimination associated with disability in a given context and approach the design of DDR processes from a perspective that situates disability not as a medical or rehabilitation challenge or pathology but instead as a societal issue and a human rights issue according to which attitudes, the physical environment, communication and information, and legal arrangements all work in combination. As with addressing the inclusion of other specific needs groups in DDR processes, DDR practitioners shall plan, design and implement DDR processes responsive to the many different needs, experiences and disadvantages of persons with disabilities. Needs will vary not only based on the particular experience of disability, but also by age, gender, ethnicity, location, migration status, social class, household size, education and training levels, and health status. DDR practitioners shall be aware that women and girls with disabilities are often subject to multiple layers of discrimination due to their gender, disability and status as former members of armed groups (see section 6.3).", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "8de8737b-6fc0-4697-8a21-993d9ae3c5a5", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.3 Accountability and transparency During the planning, design, implementation and evaluation of a DDR process, DDR participants and beneficiaries with disabilities shall be consulted and participate in key decisions that affect their well-being. Persons with disabilities shall be recognized and respected as experts in relation to their needs and engaged at all stages of the DDR process.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "5b45d29d-6a1b-42f9-8a98-a82fa8d95254", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.4 Nationally and locally owned Successful disability inclusion is a long-term process going beyond DDR. It requires leadership from national and local authorities and shall be undertaken in accordance with national and local policies and strategies, building on existing systems and structures. Therefore, disability-inclusive DDR processes shall, as early as possible, establish links to existing national and local policies and strategies on disability, work to strengthen them and create linkages with broader peacebuilding and recovery efforts for disability inclusion. If such policies and strategies do not already exist, DDR processes may trigger their establishment. Persons with disabilities in the local community shall be consulted and engaged in planning from the start. The capacities of local communities and local actors shall also be strengthened in order for initiatives to be sustainable. Planning shall seek to build on existing national and local capacity rather than create new externally led programmes or structures. The capacity of existing rehabilitation centres and services facilities shall be augmented rather than parallel facilities being set up only for former members of armed forces and groups with disabilities. This approach also assists in building referral systems and social support groups for former members of armed forces and groups with disabilities who may need follow-up services.", - "Can": false, - "May": true, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "837e4a0d-3867-414d-8350-4a7e34375262", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.5 Well planned Members of the local disability community and former members of armed forces and groups with disabilities shall be encouraged to contribute to the planning and implementation of DDR processes. DDR practitioners shall ensure that the planning and design of DDR processes facilitates equal access to DDR sites, procedures, services and support, with the provision of individual support as needed. The principles of accessibility and universal design shall be addressed in DDR planning, design, implementation and evaluation.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "2cb8c4a4-7bf4-46e5-ab9a-8faa4369c37b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 9, - "Paragraph": "4.6 Public information and community sensitization Where appropriate, DDR practitioners shall support broad gender-responsive community sensitization programming to raise awareness and address stigma regarding persons with disabilities. DDR practitioners shall also work with state and local leaders, civil society representatives and media to portray persons with disabilities in ways that counter stigmatization, marginalization and stereotyping. The communities to which former members of armed forces and groups will return, including OPDs in these communities, shall be offered information and awareness-raising sessions to help them understand the DDR process. More broadly, public information and strategic communication on DDR shall be provided in various formats to ensure the widest possible access for persons with disabilities (see IDDRS 4.60 on Public Information and Strategic Communication in Support of DDR). This information should encourage former members of armed forces and groups with disabilities to participate. Moreover, positive images and voices of persons with disabilities shall be reflected in such campaigns.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "e9c9fa67-7e35-4f1c-8095-cb9d4d2d1793", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 10, - "Paragraph": "5. Legal frameworks DDR processes are undertaken within the context of the international legal framework of rights and obligations (see IDDRS 2.11 on The Legal Framework for UN DDR). These rights and frameworks are relevant to the implementation of disability-inclusive DDR. This includes, in particular, international human rights law, international humanitarian law, international criminal law, international refugee law, and international counter-terrorism and arms control frameworks. UN-supported DDR processes shall be implemented so as to ensure that the relevant rights and obligations under that normative legal framework are respected. DDR practitioners shall be aware of the international conventions that the Member State in which they operate has signed and ratified specifically related to persons with disabilities. The discussion that follows summarizes the primary authorizing environment for approaching disability inclusion in a DDR context. The list is not exhaustive but takes into account the law and policy instruments that have been adopted since 2006. The chart below identifies the primary legal framework for advancing disability-inclusive DDR and is followed by a more detailed discussion of the legal instruments that are especially important for disability inclusion. Thereafter, additional policy frameworks are reviewed. FIGURE 2: LEGAL FRAMEWORK", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": false - }, - { - "ID": "90d91e60-8e66-4f29-a46d-727440d3d987", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 11, - "Paragraph": "5.1 International human rights law Consistent with Article 55 of the UN Charter, UN DDR practitioners have a duty, in carrying out their work, to promote and respect the human rights of all DDR participants and beneficiaries. These international human rights obligations are elaborated in the core human rights conventions, all of which apply to persons with disabilities. Of particular importance for disability-inclusive DDR are the obligations set out in the CRPD.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "f16367c1-8ea2-41f2-aa28-4054c943972d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.1.1 Convention on the Rights of Persons with Disabilities The CRPD, adopted in 2006 and now nearing universal ratification, reflects current international law on the protection of persons with disabilities and the prevailing conceptualization of disability. Moreover, it integrates within its frame the protection regime extant in international humanitarian law through its provision on the protection of persons with disabilities in situations of risk. Article 11 of the CRPD requires positive measures of protection and safety for persons with disabilities affected by situations of risk, including natural disasters, armed conflicts and other emergencies. These persons include combatants and others disabled as a consequence of armed conflict. The necessity of such protection is recognized overtly in the CRPD\u2019s preamble, which affirms that \u201cthe observance of applicable human rights instruments [is] indispensable for the full protection of persons with disabilities, in particular during armed conflicts and foreign occupation\u201d. Notably, the adoption of the CRPD created a mandate for the United Nations and triggered the adoption of a UN-wide Disability Inclusion Strategy (see section 5.4) that commits to an approach to disability inclusion that is rights-based and informed by a social model. Furthermore, article 32 of the CRPD sets out obligations to ensure that international development programmes \u2013 whatever the sector of development in question \u2013 are inclusive of persons with disabilities, both as beneficiaries of development and as participants in processes of development.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "748d7bed-3220-4e29-90e9-afb0c052db76", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 11, - "Paragraph": "5.1.2 Convention on the Rights of the Child Article 23 of the Convention on the Rights of the Child (CRC) recognizes that a mentally or physically disabled child should enjoy a full and decent life, in conditions that ensure dignity, promote self-reliance and facilitate the child\u2019s active participation in the community. The CRC recognizes the right of a disabled child to special care and encourages the extension of assistance to the eligible child and those responsible for his or her care. Assistance shall be designed to ensure that the disabled child has effective access to and receives education, training, health-care services, rehabilitation services, preparation for employment and recreation opportunities in a manner conducive to the child\u2019s achieving the fullest possible social integration and individual development, including his or her cultural and spiritual development (CRC, art. 23, para. 3).", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "facab657-d20f-4e8d-91f8-6adfcc1e48f9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 12, - "Paragraph": "5.2 International humanitarian law obligations International humanitarian law seeks both to limit the effects of armed conflict, principally through protecting persons who are not or are no longer participating in hostilities, and to regulate the means and methods of warfare. The Geneva Conventions (1949) and the two Additional Protocols (1977) provide protections to persons who are in need of specific protection, including civilians or combatants who have been injured as a result of conflict as well as civilians with disabilities. International humanitarian law thus sets out positive measures for persons with disabilities that must be undertaken to ensure that they effectively access services on an equal basis with others. These include, among others, measures such as the adaptation of infrastructure and information on available vital services relating to water, food, sanitation, shelter, health care and rehabilitation, the facilitation of support to transport food and non-food relief items, the continued provision of specific services required by persons with disabilities, or assistance to victims of the use of certain weapons in armed conflicts. The Mine Ban Treaty in Article 6(3) creates an obligation for the socioeconomic reintegration of landmine survivors and, more expansively, the Cluster Munitions Convention, rooted in obligations under international humanitarian law and the CRPD, sets out implementation measures including disability and sex-disaggregated data collection, the adoption and implementation of national laws and policies, the development of national plans and budgets, and the requirement to ensure the effective participation of cluster munition victims and their representative organizations. These protection measures have clear application to the DDR context.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": true - }, - { - "ID": "78c2083d-8328-4eb6-9bf8-c0a98f9ebd15", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.3 Domestic legal frameworks Domestic legal frameworks are an important element of protection and rights recognition for persons with disabilities. National law sometimes addresses the rights of former members of armed forces and groups with disabilities. Increasingly, countries are adopting comprehensive legislation and national action plans specifically for those with disabilities. Other sources of rights for persons with disabilities are found widely dispersed across the legal system (e.g., election laws, social protection laws, education, health). Legal reform often accompanies the transition period following conflict, presenting an opportunity to harmonize disability legislation with international legal obligations. The review of the disability law framework likewise presents an important opportunity to ensure consistency in disability rights protection and to avoid differential protections between former members of armed forces and groups with disabilities, on the one hand, and persons with disabilities not affiliated with armed forces or groups, on the other. The following issues would usually be addressed in a Member State\u2019s domestic legislation and may have relevance to disability-inclusion in a DDR process: Anti-discrimination legislation and the prohibition of discrimination on the basis of disability, together with the duty to provide reasonable accommodation; Obligations relating to the accessibility of the physical environment; transportation; information and communications, including information and communications technologies and systems; and other facilities and services open or provided to the public, both in urban and in rural areas; Legal recognition before the law; Protection of the privacy of personal, health and rehabilitation information of persons with disabilities; Right to live independently and in the community; Access to justice and measures of support to guarantee access for persons with disabilities, including the provision of procedural and age-appropriate accommodation, in order to facilitate their effective role as participants and beneficiaries, including as witnesses, in all legal proceedings, including at investigative and other preliminary stages.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "ec0588c2-ddf7-4115-966c-24e5f4715ff9", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "5.4 Institutional mandates, internal rules, policies and procedures The UN has adopted a number of internal rules, policies and procedures, some of which directly address disability inclusion and the rights of persons with disabilities. The general guide for UN-supported DDR processes is the UN IDDRS. Other internal documents that may be relevant to DDR processes include the following: Security Council resolution 2475 (2019). This resolution draws attention to the disproportionate impact of armed conflict on persons with disabilities. It also recognizes the importance of taking into account the discrete needs of persons with disabilities. The resolution has three main objectives: first, to raise awareness of the need to involve persons with disabilities in conflict prevention processes, reconstruction and post-conflict reconciliation; second, to underline the significance of a broadening knowledge of the needs and rights of persons with disabilities in peacekeeping missions; and third, to improve the reporting system on conditions experienced by persons with disabilities. UN Disability Inclusion Strategy. The UN has initiated a system-wide effort and accompanying policies to become more inclusive of persons with disabilities. In March 2019, it adopted the UN Disability Inclusion Strategy, according to which UN entities, country teams and humanitarian country teams will measure and track their performance with respect to disability inclusion. The Inter-Agency Standing Committee (IASC) Guidelines on Inclusion of Persons with Disabilities in Humanitarian Action (2019). These provide detailed operationally oriented guidance in the broader humanitarian action context, much of which is directly applicable to DDR. This and other efforts, such as the adoption of the World Charter on Disability Inclusion in Humanitarian Action, provide evidence of disability-inclusive agenda setting by humanitarian actors. The IASC Guidelines for Mental Health and Psychosocial Support in Emergency Settings (MHPSS) (2007). These recognize that during humanitarian crises, many factors (e.g., violence, uncertainty, loss of family members, loss of home) can negatively affect the mental health and psychosocial well-being of individuals, families and communities, and that persons with disabilities are often disproportionately affected. The MHPSS is therefore important to integrate into DDR to improve the mental health and psychosocial well-being of all DDR participants and beneficiaries, including those with physical, sensory, psychosocial or intellectual disabilities (for more, see IDDRS 5.60 on Health and DDR).", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "029b8056-e2f1-46a8-a770-d64aa45ae844", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "5.5 Other instruments informing disability inclusion in humanitarian crises Sustainable Development Goals. The 2030 Agenda for Sustainable Development pledges to \u201cleave no one behind\u201d. Its plan of action is directed towards a peaceful and prosperous world, where dignity of an individual person and equality among all is applied as the fundamental principle, cutting across three dimensions of the UN\u2019s work, namely, (1) development; (2) human rights; and (3) peace and security. Sendai Framework for Disaster Risk Reduction 2015\u20132030. The guiding principles of this framework state that disability should be included in all disaster risk mitigation policies and practices.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e0b3a4a7-6fd3-4dc3-ad08-4b493171555c", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "6. Planning for disability-inclusive DDR processes Disability-inclusive DDR begins at the earliest stage possible, during the context of peace negotiations (if these exist) and considering the specific requirements of persons with disabilities. DDR practitioners should therefore facilitate meetings with OPDs, former members of armed forces and groups with disabilities, leaders in the disability community, and other key constituents. DDR practitioners should hold consultations with disability organizations during the planning and pre-deployment phase and ensure that the voices of former members of armed forces and groups with disabilities are heard. This will help facilitate linkages with persons from the wider disability community. For an approach to disability inclusion in DDR, see Figure 3. FIGURE 3: APPROACHES TO DISABILITY-INCLUSIVE DDR", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d19a68b2-608e-4ad9-882c-90d6be377ab1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 14, - "Paragraph": "6.1 Disability-inclusive situational assessment During the DDR planning process, a broad situational analysis should be conducted. At a minimum, this analysis should gather information on local perceptions, disability prevalence, local capacities, intersectional discrimination and accessibility. A disability-inclusive situational analysis should lead to the inclusion of explicit measures in the programme/project design that: Avoid perpetuating or reinforcing inequalities based on disability; Take a \u2018do no harm\u2019 approach that includes the provision of reasonable accommodation for an individual with a disability, where needed; Overcome barriers to the full participation of persons with disabilities in a DDR process; Ensure that women, men, girls and boys with disabilities benefit equitably from a DDR process and its results; Incorporate specific activities to address disability-based inequalities and constraints, and meet disability-specific needs and priorities; and Use disability and gender-specific and/or sex-disaggregated indicators, including impact indicators, to monitor and evaluate progress and results. The box below provides a summary of some basic requirements when planning disability-inclusive DDR.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "bd7c26d3-af22-4788-b25e-8711beef1ec1", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "6.1.1 Knowledge and attitudes Understanding local perceptions is important given the stigmatization of disability prevalent in many societies. This takes many forms and sometimes includes stigmatization rooted in false notions about the cause of disability (e.g., curse, witchcraft). Consultations to assess the views of local communities towards returning former members of armed forces and groups with disabilities should begin as early as possible to enhance local capacity and create an enabling environment for the reintegration of former members of armed forces and groups. Qualitative data can be obtained through key informant interviews and focus group discussions that, first and foremost, include persons with disabilities affected by armed conflict, as well as ex-combatants and persons formerly associated with armed forces and groups. It should also include the family members of former members of armed forces and groups, disability community leaders, health and community workers, religious leaders, women and youth groups, government officials and nongovernmental organizations/community-based organizations. During these consultations, support should be provided to ensure that persons with different types of disabilities, including sensory, psychosocial or intellectual disabilities, can fully participate.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "b7998ace-b9b3-45b6-a8a9-b8c11db0a05b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 16, - "Paragraph": "6.1.2 Disability data It is often the case that little reliable data exists on disability, although some progress has been made globally since 2006. While there may be little reliable data about disability, and in particular about persons with disabilities affected by armed conflict, planning assessments should consider available data, including from surveys undertaken by humanitarian organizations, especially those with disability-specific programming. National census data can provide some insights into prevalence rates, although, again, this data may be highly unreliable. Sometimes disability data may be contained in demographic and health surveys that are regularly carried out in many countries, although these may have been interrupted because of the conflict or may not use recognized approaches to identifying persons with disabilities. DDR planning shall aim to capture disability data in all aspects of DDR. See Annex C for more detailed guidance and resources on disability and data.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "64607e35-131d-45bd-a7a0-959d17696773", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "6.1.3 Identify existing capacities When DDR sites are established (such as reception centres, disarmament and/or demobilization sites, military barracks, etc.), existing capacities in the surrounding area shall be assessed. As a general rule, the area around a DDR site must conform with the Sphere standards for water supply and sanitation, drainage, vector control, etc. The availability and accessibility of basic sanitary facilities shall be considered, as shall the possibility of health and rehabilitation referrals in the surrounding area. Locations and routes for medical and obstetric emergency referral must be pre-identified, and there should be sufficient capacity for referral or medical evacuation to cope with any emergencies that may arise, e.g., post-partum bleeding (the distance to the nearest health facility and the time required to get there are important factors to consider) (see IDDRS 4.20 on Demobilization). Planning should also take into careful consideration the potential rehabilitation needs of former members of armed forces and groups with disabilities and plan for the provision of assistive devices (e.g., crutches, wheelchairs, walking sticks) and for linking and referrals to community support. Such needs shall be budgeted for during planning (see Annex D for guidance on how to conduct a disability-inclusive budget scan). OPDs as well as existing facilities and programmes that provide services to persons with disabilities should form part of the initial assessment, as they can provide support to DDR participants and beneficiaries. Identification of the local capacities of OPDs and organizations that provide services to persons with disabilities and working in collaboration with them is important, especially to ensure that former members of armed forces and groups with disabilities who have self-demobilized can be identified and included in DDR and to help strengthen existing capacity that may have been seriously undermined during the armed conflict. Transport planning is also an important dimension of effectively accommodating former members of armed forces and groups with disabilities in the DDR process, as individuals with disabilities in may require accessible forms of transport. In addition to examining capacities in and around DDR sites, the existing capacities and coping mechanisms of individuals, households and communities shall also be analysed to ensure the appropriateness and effectiveness of disability-inclusive assistance. This assessment should map existing health-care and rehabilitation facilities in and around communities where former members of armed forces and groups are likely to return. This should include a mapping of social protection programmes, including safety nets, programmes to support access to employment, skills development, and access to assistive technology. This exercise should ascertain whether the country has a functioning national disability strategy and programme, and the extent that ministries are engaged (this should go beyond a ministry of labour and social affairs or a ministry of health, to include other key ministries such as education and planning and development, among others).", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "ac00b2ea-5a11-497d-9d74-c605b5541940", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 17, - "Paragraph": "6.2 Planning for the accessible design of DDR sites Planning assessments and recommendations for personnel and budgetary allocation for inclusive DDR shall make provisions for disability expertise and accessibility for DDR sites (e.g., removal of physical barriers, ensuring safe and accessible WASH facilities, appropriate preparation to receive individuals with sensory disabilities). The accessible design of DDR sites will ensure that former members of armed forces and groups with physical and sensory disabilities are included and make it more likely that they will participate. International humanitarian standards shall apply and gender-specific requirements shall be taken into account (e.g., security, sexual and gender-based violence prevention measures, the provision of disability-inclusive and female-specific health-care assistance and support). Engagement with persons with disabilities and OPDs in the design, construction and modification of site infrastructure for accessibility is a strategy promoted in disability-inclusive humanitarian action and should be considered. Persons with disabilities should be reasonably accommodated, meaning that necessary and appropriate modifications and adjustments are applied to meet the requirements of the individual in question (for some examples, see Box 4). In all instances, reasonable accommodation is intended to ensure that persons with disabilities are able to enjoy or exercise on an equal basis with others all human rights. The duty to provide reasonable accommodation is thus a requirement of the obligation not to discriminate on the basis of disability and applies to all aspects of DDR. Research underscores that reasonable accommodation is typically at no or low cost. Engaging the local disability community or volunteers from among former members of armed forces and groups to provide support is an option that may be considered. Sites must take into account the need for capacity to address the specific requirements of former members of armed forces and groups with disabilities. Information on DDR should be made available in multiple and accessible formants, and registration processes should account for the accessibility of persons with disabilities, including having protocols for the provision of reasonable accommodation. Possible options include the establishment of disability focal points in each region and the secondment of experts, including those from OPDs, the national disability programme (if one exists) or an umbrella association of OPDs. DDR participants with disabilities should be briefed on community-based support and disability services, so it is essential that all personnel are trained in disability awareness strategies and are fully aware of available facilities and services.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "4b34101d-0144-440a-80f2-4abf7eff0903", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 18, - "Paragraph": "6.3 Gender and disability Planning for DDR processes shall take into account the intersection of age, gender, disability and other forms of diversity. DDR practitioners shall also be aware of the different ways in which these categories intersect, and the differing impacts that such intersectionality may have on former members of armed forces and groups with disabilities. Although male and female former members of armed forces and groups with disabilities may both experience social marginalization, women and girls often face unique forms of stigma and are more vulnerable to abuse. Limited access to viable economic opportunities may leave persons with disability more financially (and physically) at risk than they were as part of armed forces and groups, which may leave women and girls facing unique protection risks. Gender norms in the community may also be more traditional than in armed forces and groups, leading to losses in gender equality for women and girls. For example, community members may expect female combatants to return to traditional gender roles in the domestic sphere, even if they held leadership roles in their armed force or group. Female combatants with disabilities may find this readjustment particularly difficult, especially if they are locally perceived as unable to fulfil the role of a wife and mother due to their disability. Adolescent girls may also be excluded from decision-making due to their previous association with an armed force or group, because of discrimination on the basis of disability and gender norms, or because of a lack of accessibility measures. Therefore, when designing programmes, planners shall consult with male and female persons with disabilities as well as community members, including those belonging to OPDs and women\u2019s and youth groups. Planning and programme design should also be based on assessments that are gender responsive. Safety and dignity shall be prioritized, and any unintended negative effects of DDR processes shall be minimized. Special attention shall be paid to ensure that female DDR participants and beneficiaries, including those with disabilities, are able to access assistance and services in proportion to need and without barriers or protection risks. Mechanisms should be established through which DDR participants and beneficiaries can express concerns and make complaints. Monitoring and evaluation shall include protection dimensions and take decisive action to address issues identified.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "fc77c2c2-8bbb-484e-b358-a250206a24cd", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 20, - "Paragraph": "7. Disability-inclusive DDR programmes DDR programmes consist of a set of related measures, with a particular aim, falling under the operational categories of disarmament, demobilization and reintegration. DDR programmes require certain preconditions, such as the signing of a peace agreement (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7557eb47-5727-4eff-af03-4768aacf610f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "7.1 Access to information specific to disability services and support Upon entry to a DDR programme, all DDR participants should be made aware of their rights and, in particular, any specific rights related to disability. They should also be provided with access to information specific to disability services and support, such as rehabilitation services, the provision of assistive devices, and peer support. The approach taken to providing disability-specific support to DDR participants should be informed by existing principles of rehabilitation.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "8408dd09-dfb5-4cd2-823c-58cfde690926", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": null, - "Paragraph": "7.2 Physical layout of DDR sites The physical layout of DDR sites should allow for DDR participants with disabilities to participate in all aspects of the DDR programme, from reception (if applicable) to disarmament and demobilization. Universal design and accessibility should be at the forefront of layout planning. While males and females shall be provided separate facilities, in part to ensure the safety and autonomy of women and girls who are sex slaves or forced \u2018wives\u2019, persons shall not be separated based on disability. Furthermore, space should be available for persons with disabilities who have caregivers required for personal assistance, or who require assistive devices and technology.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b2cbe385-cf25-4fce-ad5f-9b78ae36615b", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 20, - "Paragraph": "7.3 WASH access Water, sanitation and hygiene (WASH) play a key role in ensuring the well-being of people, including persons with disabilities and their families, who may need to access extra quantities of water as well as extra or specific hygiene-related items, and require reliable access to water and sanitation infrastructures. Persons with disabilities are often confronted with non-accessible facilities that they find difficult to negotiate, and they may face stigma and discrimination when using WASH facilities. This can seriously impact the health and dignity of DDR participants with disabilities. The gendered dimension of accessible WASH is also essential to consider, as women and girls report considerable anxiety about safety and security in this context. The additional challenge of menstrual hygiene management for women and girls with disabilities should be factored into WASH accessibility, including the need for adaptive and accessible menstrual health products. Suggested measures to address accessible WASH in a DDR process include the following: Engage OPDs in planning for access to safe water and sanitation to persons with disabilities. In low-resource settings, civil society organizations often play a critical role in supporting government efforts in WASH. Invest in and allocate financial resources/budget for accessible WASH in DDR sites. Partner with organizations that provide accessible WASH in communities, households and settings outside the home, prioritizing schools, workplaces, health facilities and communal WASH facilities. Partner with organizations that provide\u00a0safe, accessible and affordable\u00a0menstrual hygiene items, such as\u00a0underwear with built-in\u00a0menstrual\u00a0protection. Adopt a twin-track approach: mainstream disability in DDR WASH policy and develop disability-specific WASH measures.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2f820690-41f7-40d3-82e3-ecfb716b1106", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 21, - "Paragraph": "7.4 Equal access to health services During demobilization, individuals should be directed to a doctor or medical team for physical and psychosocial health screening (see IDDRS 4.20 on Demobilization). The specific needs of former members of armed forces and groups with disabilities should be assessed, and DDR practitioners should support these individuals to access the assistance they need throughout demobilization and the subsequent reintegration stage of the DDR programme. This can be done, for example, by referring individuals to health facilities identified during previous assessments (see section 6.1.3). Residential demobilization sites (such as cantonment sites) should provide birthing kits, sufficient clean water, supplemental feeding and medical facilities. Women and girls with disabilities who have been abducted and/or suffered sexual assault during and after the conflict should be assisted by women who are trained in trauma management and offered counselling services appropriate to the cultural context. They must also be included in HIV and AIDS programming in DDR. Research demonstrates that men and women with disabilities are often assumed to be non-sexual and to have no need for HIV and AIDS services, which is wholly without basis in fact. Persons with disabilities, especially girls, are also at heightened risk of sexual abuse and assault. Persons with disabilities must be able to access all health facilities, including temporary ones. When health facilities are rebuilt or rehabilitated, they should be fully accessible to persons with disabilities, including elements such as entrances, restrooms, ease of movement within buildings, and signage. Also relevant for DDR programming is the promotion of initiatives to transport persons with disabilities to health facilities and to ensure that entrances are wide enough, signage is clear and pathways facilitate movement. Information on all health services should be provided in multiple accessible formats, taking into account the requirements of former members of armed forces and groups with disabilities who have hearing, visual, intellectual or psychosocial disabilities. For specific guidance on persons with disabilities, mental health and psychosocial support, refer to IDDRS 5.70 on Health and DDR.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "625e1e56-00ee-467a-9e34-462eac2d02ec", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 21, - "Paragraph": "7.5 Reinsertion As part of a DDR programme, transitional reinsertion assistance may entail the provision of cash payments, vouchers and/or in-kind support, or the participation of former members of armed forces and groups in public works programmes (see IDDRS 4.20 on Demobilization). Irrespective of the type of reinsertion assistance provided, DDR practitioners should take the specific needs of those with disabilities into account. Food assistance should, for example, cater to the specific nutritional needs of persons with disabilities (see IDDRS 5.50 on Food Assistance in DDR). More generally, DDR practitioners should always ask themselves whether the specific transfer modality selected (cash, voucher, in-kind support, public works programme) poses any specific challenges or opportunities to persons with disabilities, and how these challenges and opportunities intersect with considerations related to age and gender. When considering the provision of transitional reinsertion assistance, DDR practitioners should: Plan for extra costs associated with transitional reinsertion assistance for persons with disabilities (e.g., assistive devices, transport, specific nutritional needs, community-based services); Ensure that, where possible, reinsertion kits are universal in their design (i.e., that they can be used by persons with disabilities without additional modifications); Ensure accessibility, for example, of pick-up points for cash payments, vouchers and/or in-kind assistance; Be aware of any safety or protection concerns that may impact transitional assistance or require extra costs, particularly for women and girls with disabilities if travelling to pick-up points for reinsertion assistance (e.g., ensuring safe transport and providing for extra costs as needed); Ensure that, when voucher systems are used, they allow persons with disabilities to cater to their specific needs in terms of nutrition, accommodation, etc., and are viable for them to utilize (e.g., accounting for distance and accessibility to locations where they can use vouchers, as well as any additional transportation costs incurred); Include persons with disabilities in public works programmes where possible, planning for any extra costs needed to enable them to effectively do their jobs, and provide alternative roles or reinsertion/reintegration support only when an individual is unable to do the work required; Ensure, where possible, that education and training efforts provide support for participants with disabilities, and account for any additional costs this may require. Failure to ensure that transitional reinsertion assistance meets the needs of former members of armed forces and groups with disabilities will compromise their reintegration and could be a potential source of conflict or care burden within their communities and family. Research shows that caregiving responsibilities for former members of armed forces and groups with disabilities fall disproportionately on women and girls. DDR practitioners should also ensure that former members of armed forces and groups with disabilities have accessible means of transport to the area where they will receive reinsertion and/or reintegration support. Ensuring a safe means of transport that does not subject women (including women with disabilities) to sexual violence or trafficking is essential.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "44f98afa-985c-4342-8ecd-8f64197456f6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 22, - "Paragraph": "7.6 Reintegration DDR practitioners shall plan for and allocate resources for disability inclusion in reintegration activities, both when these activities are implemented as part of a DDR programme and when they are implemented during ongoing conflict (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). These activities shall, as far as possible, be inclusive, and mainstream initiatives where persons with disabilities are able to participate in the same kinds of economic, social and political initiatives as their non-disabled counterparts. Where possible, community-based rehabilitation approaches should be sought to ensure the inclusion of those with disabilities (see Box 7). Disability-specific (targeted) initiatives may be appropriate but should not take the place of inclusive programming. Barriers to full participation in social, economic and political reintegration shall be identified and addressed. Economic reintegration Economic inclusion for individuals with disabilities shall be accounted for in DDR planning and design. DDR practitioners shall not make decisions on the basis of assumptions about what DDR participants with disabilities can and cannot do and shall not foster exclusion from livelihood activities. DDR processes shall not discriminate on the basis of disability and shall observe the duty to provide reasonable accommodation where needed. Accessibility measures to foster economic inclusion and equality of opportunity shall be put in place (for example, physical, transport, communication and information). Specific measures must be implemented to ensure that former members of armed forces and groups with disabilities have access to the same kind of reintegration opportunities provided to other DDR participants and beneficiaries. Like their non-disabled counterparts, they should have a voice in their choice of training and livelihoods activities and should not be segregated into initiatives that put them on the fringes of the economy. Participation in the open labour market should be the goal for all adult former members of armed forces and groups, including those with disabilities. Considering that many conflict-prone countries are agriculture-based economies, the facilitation of a return to farming or fishing can be key to successful reintegration and to the transition from subsistence farming to more sustainable livelihoods. Interventions to support smallholder farmers and marginal fishers are needed, as these groups constitute the largest segments of the workforce in current conflict zones. The capacity of these agricultural workers to jump-start their livelihoods could be greatly enhanced by providing them with an understanding of how markets work, facilitating their access to improved production systems and making their farms more resilient. Examples of disability-inclusive approaches for economic reintegration include the following: Implement strategies to counter negative attitudes and discrimination against persons with disabilities, particularly regarding their ability to participate in training and economic activity. Sensitize family and community members to the rights and capacities of persons with disabilities, including their right and capacity to work. Mainstream protection and safeguarding measures across livelihood and economic inclusion programming. Inform persons with disabilities about these measures and how they can access them. Recognize the gendered dimension of some protection and safeguarding risks. Assess and ensure the accessibility of skills training, apprenticeships and financial service providers, and markets and market-related information for persons with different types of disability. Assist vocational or business skills training providers to make the courses they offer accessible to persons with different types of disability. Ensure that trainers are aware of how to train individuals with certain types of impairment. Provide (or provide referrals to) technical aids and assistive devices where necessary, such as crutches, white canes and hearing aids. Adapt equipment or communication methods, for example, Braille and sign-language interpretation. Encourage training and apprenticeship providers, potential employers, and business development and financial service providers to respect the rights of persons with disabilities, including their right to have full access to livelihoods, and prevent stigmatization. Support engagement with local communities, including OPDs, to identify barriers and employment opportunities for reintegrating former members of armed forces and groups with disabilities. Develop outreach and community-based processes that can identify and connect with persons with disabilities who are not visible, for example, the self-demobilized. Social reintegration Families and social networks can remove or reduce barriers that hinder the social reintegration of persons with disabilities. Supportive families can promote inclusion, particularly for former members of armed forces and groups who are stigmatized or excluded. However, families may also act as barriers as well as enablers, particularly if stigma and misconceptions about persons with disabilities persist. To identify and address barriers to social reintegration, DDR practitioners should conduct sensitization that both challenges negative perceptions and acknowledges the gender and age dimensions of discrimination, engaging civil society representatives and supporting co-existence and social cohesion. Where necessary and possible, reintegration support should also be made available to caregivers to former members of armed forces and groups with disabilities. Peer support can also be critical to social reintegration, and is a well-established intervention used with success in facilitating the reintegration of individuals with disabilities following traumatic injury, such as one sustained from a landmine or unexploded ordinance. Peer support refers to the process of support and assistance to facilitate long-term recovery. It may involve knowledge sharing, skills sharing, practical assistance and/or emotional support that contributes to mental health and psychosocial well-being. Individuals who are trained in peer support can connect individuals with disabilities to opportunities, resources and communities of support. Persons with disabilities from the community are potential peer supporters for former members of armed forces and groups with disabilities. These individuals may also be important resources for facilitating access to social protection programmes, in countries where these exist. Peer support is specifically referenced in the CRPD, and capacity-building to establish peer support must be tailored to the specific DDR context. OPDs may provide peer support services, and the provision of seed money for the training of peer support workers and related initiatives can benefit both the community and returning members of armed forces and groups. Where appropriate, former members of armed forces and groups with disabilities can also be trained as peer support workers. Research in other contexts has demonstrated the empowering role that persons with disabilities can play when included in peer training for HIV/AIDS education, for example. Psychosocial and intellectual disabilities, including mental impairments, can hinder social and economic reintegration, particularly when these are associated with persistent mental health or cognitive conditions or disturbances in behaviour, including those stemming from acute stress, grief, depression and/or post-traumatic stress (see IDDRS 5.70 on Health and DDR). Former members of armed forces and groups with psychosocial and intellectual disabilities may need focused additional support delivered by trained non-specialists or mental health and psychosocial health specialists. These needs should be identified in health screenings conducted during demobilization and throughout the reintegration phase of the DDR programme (see section 7.4). Finally, schools offer critical avenues for achieving disability-inclusion for children and youth with disabilities affected by conflict. The global comprehensive school safety framework emphasizes three school safety pillars important for DDR and includes key guidance on disability-inclusive approaches (see also IDDRS 5.20 on Children and DDR and IDDRS 5.30 on Youth and DDR). Political reintegration Political reintegration highlights the importance of giving voice and agency to former members of armed forces and groups with disabilities in decision-making in the community and broader political processes. In this regard, it may be useful to encourage the representation of former members of armed forces and groups with disabilities, exploring opportunities to partner with or join existing political associations for persons with disabilities. Such associations may help individuals to receive information regarding rights, resources and opportunities and may advocate for equitable assistance. These associations may also engage in counselling, training, the provision of credit for income-generating activities and employment, and other referral services. For further information on associations of former members of armed forces and groups, see IDDRS 4.30 on Reintegration.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "bf8c1b8f-83af-41ca-983e-6642a1a24941", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 25, - "Paragraph": "8. Disability-inclusive DDR-related tools In addition to DDR programmes, DDR processes can also include DDR-related tools such as community violence reduction (CVR), DDR support to mediation, and transitional weapons and ammunition management (WAM). DDR-related tools are immediate and targeted measures that can complement DDR programmes or be implemented when the preconditions for a DDR programme are not in place (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "0b393480-c1ad-44a0-890f-d90f3d52613f", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 25, - "Paragraph": "8.1 Community violence reduction CVR programmes are bottom-up interventions that focus on the reduction of armed violence at the local level by fostering improved social cohesion and providing incentives to resist recruitment (see IDDRS 2.30 on Community Violence Reduction). They offer important avenues for disability inclusion, such as: Ensuring that targeting of groups susceptible to recruitment (i.e., youth at risk) includes persons with disabilities; Provision of disability- and gender-inclusive alternatives to violence-based livelihoods; Provision of mental health and psychosocial support to at-risk youth and former members of armed forces and groups, inclusive of persons with disabilities; Partnerships with OPDs and the capacity-building of these organizations; Raising awareness of the rights of persons with disabilities and disability inclusion, including through civil society networks in coordination with national human rights mechanisms and working groups on disability functioning at national and/or local levels; and Provision of stop-gap support to former members of armed forces and groups with disabilities who are waiting for reintegration support, in close cooperation with the national DDR programme (where applicable) and national disability structures.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fbfc1a98-8a35-4858-b41b-fa1ee5e386c6", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 26, - "Paragraph": "8.2 DDR support to mediation Peace agreements seek to end armed conflict but also to ensure sustainable peace by addressing those issues that caused conflict. As such, they can help to create environments where persons with disabilities are empowered and fully integrated into post-conflict societies. In this regard, DDR practitioners should advise mediators on the importance of including the voices of persons with disabilities in peace negotiations and actively removing barriers to their inclusion. It should also be clear as to whether peace agreement provisions relate to disabilities acquired prior to conflict, during conflict or both. Intersectionality should also be acknowledged, as failure to do so means that the specific challenges of certain groups (children with disabilities, women with disabilities, former members of armed forces and groups with disabilities, etc.) may not be identified and addressed. Peace agreements can lay the foundations for more substantive policies and law reform by ensuring that a disability lens is adopted in post-conflict mechanisms. DDR practitioners should therefore advise mediators that the language included in peace agreement provisions related to persons with disability should be empowering, for example, by viewing disability as a differentiating characteristic no different from gender, race or religion. Viewing persons with disabilities only as victims requiring support may perpetuate their marginalization and disempowerment. Where DDR is linked to a process of security sector reform, peace agreements may contain specific provisions related to the integration of former members of armed forces and groups with disabilities into the security sector (see IDDRS 6.10 on DDR and Security Sector Reform). In line with CRPD, DDR practitioners should advise mediators that members of armed forces and groups with disabilities shall not be excluded from opportunities to integrate into the security sector solely because of their disability. If a person is unable to perform a specific role due to the nature of his/her disability, an alternative role should be sought, and only if an alternative role is unavailable should the person be demobilized and supported to reintegrate into civilian life. Persons with disabilities may also opt for demobilization and reintegration on a voluntary basis, if this option is on offer. However, existing members of armed forces shall not be forced to demobilize solely on the basis of their disability.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "a24be40c-4ecc-46b1-865e-9e7a51363e1d", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 26, - "Paragraph": "8.3 Transitional weapons and ammunition management Transitional WAM is primarily aimed at reducing the capacity of individuals and groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives (see IDDRS 4.11 on Transitional Weapons and Ammunition Management). Barriers to the participation of persons with disabilities in transitional WAM measures should be identified and rectified. It may also be particularly helpful to engage persons with disabilities in sensitization efforts highlighting the dangers of weapons possession and unsafe storage (irrespective of whether their disability was caused by armed conflict). Such sensitization work can positively highlight the capacities of persons with disabilities.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e3073fc4-e83e-4f38-9f9d-08070dca745e", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 27, - "Paragraph": "9. Monitoring and evaluating disability-inclusive DDR processes Addressing disability inclusion in mechanisms for monitoring and evaluation (M&E) is essential for a DDR process to ensure accountability to all stakeholders and, in particular, the affected population. Disability inclusion shall be monitored and evaluated as part of a broader M&E plan for the DDR process (see IDDRS 3.50 on Monitoring and Evaluation). In general, arrangements for monitoring disability inclusion during DDR should be made in advance between all implementing partners, using existing tools for monitoring and applying international best practices on disability data (see Annex C for more on disability and data). It is important for data on DDR participants and beneficiaries to be collected so that it can be easily disaggregated on the basis of disability (and other factors, including sex and age). This means that numerical data should be systematically collected for ex-combatants, persons formerly associated with armed forces and groups, and dependants. Every effort should be made to disaggregate the data by disability in addition to sex and age, other specific needs categories (e.g., people living with HIV/AIDS), DDR location(s), armed force/group affiliation, etc. Identifying lessons learned and conducting evaluations of the impacts of DDR assistance on persons with disabilities helps to improve the approach to disability inclusion within DDR processes and the broader inter-agency approach to DDR. DDR practitioners should ensure that an evaluation of disability inclusion during the early stages of a DDR process is carried out and factored into later stages. Gender should also be taken into consideration in the evaluation to assess if there were any unexpected outcomes of the DDR process on women and men with disabilities, and on gender relations and gender equality. Lessons learned should be recorded and shared with all relevant stakeholders, in accessible formats, to guide future policies and to improve the effectiveness of future planning and support to operations. While monitoring indicators appropriate for DDR will be designed according to the context in which DDR is implemented and the DDR strategy and components, the inclusion of disability-specific indicators should be identified to guide DDR practitioners in the establishment of monitoring mechanisms and systems. Some sample indicators for DDR programmes are provided in Box 8, and more detailed guidance is provided in Annex C. BOX 8: SAMPLE DISABILITY-INCLUSIVE INDICATORS FOR DDR PROGRAMMES", - "Can": true, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "02000e1d-6d17-4c9c-afd0-1be95eaffd30", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 28, - "Paragraph": "Annex A: Abbreviations CRC\t\tConvention on the Rights of the Child CRPD\t\tConvention on the Rights of Persons with Disabilities CVR\t\tcommunity violence reduction M&E\t\tmonitoring and evaluation OPD\t\torganization of persons with disabilities WAM\t\tweapons and ammunition management WASH\t\twater, sanitation and hygiene", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "fa143f56-3282-44ca-892b-61be4cf014b7", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 28, - "Paragraph": "Annex B: Barrier checklist A social understanding of disability in the context of a DDR process focuses attention on the removal of barriers to equalize opportunities between persons with and without disabilities. Directing attention to the removal of barriers in a DDR process provides benefits to a broad range of persons with disabilities. While reasonable accommodation will still be required to ensure all persons with disabilities can participate in and benefit from a DDR process, this approach is applicable to complex DDR processes. The following table provides examples of how an approach to barrier removal may be applied to benefit individuals with a range of functioning difficulties. The functional difficulty categories in the final column of the table are based on the Washington Group Short Set of questions. The examples provided are not exhaustive and are not a substitute for consultation with OPDs. TABLE 2: BARRIER REMOVAL AS APPLIED TO A RANGE OF FUNCTIONING DIFFICULTIES", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "9b79b301-cb26-41fd-ae0a-81870ee0b3ac", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 30, - "Paragraph": "Annex C: Disability and data The necessity of ensuring that disability data is captured accurately is underscored in the UN Convention on the Rights of Persons with Disabilities. Article 31 provides that \u201cinformation \u2026 shall be disaggregated, as appropriate, and used to help assess the implementation of States Parties\u2019 obligations \u2026 to identify and address the barriers faced by persons with disabilities in exercising their rights\u201d. The 2030 Agenda for Sustainable Development has as its overarching goal that no one is left behind in development and, accordingly, acknowledges the role of data \u2013 specifically, the disaggregation of data \u2013 as central to this effort. There are numerous challenges to capturing accurate disability data: It is not possible to write one question or a short set of survey questions that can adequately, accurately and comprehensively capture the complexity of disability. Any survey questions must be short, clear and precise. Often, problematic questions are used that result in poor capture of data. These challenges can be addressed. In 2001, the Washington Group on Disability Statistics was established as a City Group under the aegis of the UN Statistical Commission to: Address the need for population-based measures of disability. Foster international cooperation in the area of health and disability statistics. Produce internationally tested measures to monitor the status of persons with disability. Incorporate disability into national statistical systems. The Washington Group website and complete set of resources may be found at http://www.washingtongroup-disability.com/. The Washington Group approach acknowledges that: Disability is complex. Disability incorporates a variety of different components: body functions and structure, limitations in activities (capacity), and restrictions in participation (performance). Disability includes characteristics of both the person and their environment. The language of disability is not specific. In many cultures, stigma is associated with disability, creating additional challenges to measurement and, ultimately, inclusion. The Washington Group developed a set of questions that capture a part of the disability complexity and that can be used in a valid, reliable and internationally comparable manner. They can be used in conjunction with other data collected in a census or survey (related to outcomes like access to DDR processes, education or employment) to undertake analyses consistent with the social model of disability. The Washington Group defined an approach to measuring disability based on identifying those who, because of difficulties doing certain universal, basic actions, are at greater risk than the general population for limitations in participation. The objectives of the Washington Group Short Set are to: Identify persons with similar types and degree of limitations in basic actions, regardless of nationality or culture. Represent the majority of (but not all) persons with limitations in basic actions. Represent commonly occurring limitations in domains that can be captured in the census context. The intended use of the Washington Group Short Set is to: Compare levels of participation in employment, education or family life for those with disability versus those without disability to see if persons with disability have achieved social inclusion. Monitor effectiveness of programmes and policies to promote full participation. Monitor prevalence trends for persons with limitations in specific basic action domains. For some important limitations and considerations in relation to using the Washington Group Short Set, see Box 9. The brevity of the module \u2013 six questions \u2013 makes it well suited for inclusion in larger surveys, and for disaggregating outcome indicators by disability status. To maximize international comparability, the Washington Group Short Set obtains information on difficulties a person may have in undertaking basic functioning activities that apply to people in all cultures and societies and of all nationalities, and so are universally applicable. The final set of questions includes difficulties seeing, hearing, walking or climbing stairs, remembering or concentrating, self-care and communication (expressive and receptive). The question set with specific instructions may be accessed at https://www.washingtongroup-disability.com/fileadmin/uploads/wg/Documents/Questions/Washington_Group_Questionnaire__1_-_WG_Short_Set_on_Functioning.pdf.", - "Can": true, - "May": true, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "16302cbe-0fb8-4aec-8ebb-7ae84ce0ce21", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 32, - "Paragraph": "Children with disabilities The Washington Group questions are designed to collect information on the population aged five years and above, with a knowledgeable proxy respondent providing information for children. Because they were not specifically designed for use among children, they do not include key aspects of child development important for identifying disability in children, and the wording of certain domains may not be relevant (or suitable) for children and adolescents. The WG-UNICEF Module on Child Functioning is designed to meet the needs of identifying and measuring disability in children. The question set with specific instructions may be accessed at https://www.washingtongroup-disability.com/question-sets/wg-unicef-child-functioning-module-cfm/.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "2edbcf29-93db-4a80-bd07-fc22002277ff", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 32, - "Paragraph": "Indicators for disability-inclusive DDR During planning, core indicators need to be developed to monitor the progress and impact of disability-inclusive DDR initiatives. These should include process indicators, such as the provision of assistive devices and the number of peer supporters trained, and outcome indicators, like disability prevalence among DDR participants and the number of ex-combatants seeking disability supports. Where relevant, DDR planners need to work with national programmes in the design and monitoring of initiatives, as it is important that the indicators used in DDR programmes are harmonized with national indicators (if they exist). DDR planners, implementing partners and national counterparts should agree on the benchmarks against which disability inclusion in DDR will be assessed.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "27fe07ea-3f56-4e25-a878-88ac9d568d69", - "Color": "#D10007", - "Level": "5", - "LevelName": "", - "Title": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021", - "PageNum": 33, - "Paragraph": "Annex D: Disability-inclusion markers Disability-inclusion markers are under development in various organizations. To ensure disability inclusion in a DDR process, an inclusion marker applied to budgeting at the design stage could help to ensure that disability-inclusion measures are adequately aligned to budgeting, a factor the research discloses has been inadequate in past DDR processes and has led to serious disaffection and required emergency donor budget infusions. A Disability Budget Scan, a tracking mechanism to monitor the integration of disability-inclusive interventions from the design to the implementation and evaluation phase, could help ensure that disability-inclusive interventions within DDR are adequately funded at the outset (and throughout) a DDR process. Under a Disability Budget Scan, budget lines are screened and classified according to four categories: No disability-inclusive link. Disbursements made without any disability-inclusive analysis. No expenditures aimed at, for example, barrier removal in DDR cantonment and registration sites. No budget lines to address reasonable accommodations for individual needs such as assistive devices or sign language interpreters. Disability-sensitive link. These expenditures are intended to provide different responses to meet the individual and collective needs of persons with disabilities. Examples include budgeting for physical barrier removal for housing, assistive devices, screening for disability prevalence and supplemental cash payments to address requirements of individuals with disabilities. Strengthening disability-inclusion link. Expenditures aimed at strengthening disability inclusion, at the institutional level. Examples include capacity-building of disability focal points in line ministries or in partner institutions or strengthening community-based organizations that provide supports to persons with disabilities. Disability inclusive. Specific actions within a DDR process seeking to transform disability inclusion broadly in society. These expenditures address the strategic interests of persons with disabilities by contributing to long-term structural and sustainable changes in societies to promote disability equality and non-discrimination on the basis of disability. Examples include support for disability awareness campaigning in returning communities and local sensitization about disability inclusion, support for disability law and policy reforms, and support for the establishment of community-based rehabilitation programming broadly.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - } -] \ No newline at end of file diff --git a/static/data/json/IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021.json b/static/data/json/IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021.json deleted file mode 100644 index 190c2a0..0000000 --- a/static/data/json/IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021.json +++ /dev/null @@ -1,1047 +0,0 @@ -[ - { - "ID": "5912a6ac-c995-4adc-a813-3eaac95c2b8e", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Contents Summary \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 1 1. Module scope and objectives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 2 2. Terms, definitions and abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 2 3. Introduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 3 4. Guiding principles \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 4 4.1 People-centred \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 4 4.2 Gender responsive and inclusive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 5 4.3 Conflict sensitive \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 5 4.4 Context specific \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 6 4.5 Flexible, accountable and transparent \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 6 4.6 Nationally and locally owned \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 6 4.7 Regionally supported \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026. 7 4.8 Integrated \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026 7 5. Natural resources in conflict settings \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 8 5.1 Contributing to the causes of conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 8 5.2 Financing and sustaining conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026.. 9 5.3 Contributing to reconciliation and sustaining peace \u2026...\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026\u2026 11 6. DDR and natural resources: planning considerations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 12 6.1 Assessments and design \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 13 6.1.1 Natural resources and conflict linkages \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 14 6.1.2 Employment and livelihood opportunities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026.. 17 6.2 Specific-needs groups and cross-cutting issues \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026.. 19 6.2.1 Youth \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026\u2026\u2026\u2026\u2026.. 19 6.2.2 Women and girls \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 19 6.2.3 Persons with disabilities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 20 6.2.4 Health considerations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 20 6.2.5 Indigenous and tribal peoples and local communities \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 21 6.3 Risk management and implementation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 21 7. DDR programmes and natural resources \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026.. 24 7.1 Disarmament \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 24 7.2 Demobilization \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026\u2026\u2026\u2026\u2026\u2026\u2026..26 7.2.1 Quick-impact projects in natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 26 7.2.2 Demining agricultural areas \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..27 7.2.3 Disposal and management of waste from conflict \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 27 7.3 Reintegration \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 29 7.3.1 Value chain approaches and community-based natural resource management \u2026\u2026..\u2026\u2026\u2026\u2026 31 7.3.2 Reintegration support and land rights \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026. 32 7.3.3 Reintegration support and agriculture and fisheries \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 33 7.3.4 Reintegration support and forestry and energy \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 35 7.3.5 Reintegration support and energy \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 36 7.3.6 Reintegration support and extractives \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 37 7.3.7 Reintegration support and water management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 39 7.3.8 Reintegration support and waste management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026..\u2026 40 8. DDR-related tools and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 41 8.1 DDR support to mediation \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 41 8.2 Transitional weapons and ammunition management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.. 41 8.3 Community violence reduction \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026...\u2026\u2026\u2026. 42 8.4 Transitional security arrangements \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.\u2026 42 9. Reintegration support and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026. 43 10. DDR, SSR and natural resource management \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 43 Annex A: Abbreviations \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026.... 44 Annex B: Sample questions for specific needs analysis in regard to natural resources in DDR \u2026. 44 Annex C: Relevant frameworks and standards for natural resources in conflict settings \u2026\u2026\u2026\u2026. 46 Endnotes \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026... 52 6.30 DDR and Natural Resource Management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "615f54a7-cdbe-4641-90a4-1ada4b527793", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "Summary The relationship between natural resources and armed conflict is well known and documented, evidenced by numerous examples from all over the world. Natural resources may be implicated all along the peace continuum, from contributing to grievances, to financing armed groups, to supporting livelihoods and recovery through their sound management. Furthermore, the economies of countries suffering from armed conflict are often marked by unsustainable or illicit trade in natural resources, thereby tying conflict areas to the rest of the world through global supply chains. For DDR processes to be effective, practitioners should consider both the risks and opportunities that natural resource management may pose to their efforts. As part of the war economy, natural resources may be exploited and traded directly by or through local communities under the auspices of armed groups, organized criminal groups or members of the security sector, and eventually be placed on national and international markets through trade with multinational companies. This pattern not only shores up the actors directly implicated in the conflict, but it also undermines the good governance of natural resources needed to support development and sustainable peace. Once conflict is underway, natural resources may be exploited to finance the acquisition of weapons and ammunition and to reinforce the war economy, linking armed groups and even the security sector to international markets and organized criminal groups. These dynamics are challenging to address through DDR processes, but should be contended with if sustainable peace is to be achieved. When DDR processes promote good governance practices, transparent policies and community engagement around natural resource management, they can simultaneously address conflict drivers and the impacts of armed conflict on the environment and host communities. Issues of land rights, equal access to natural resources for livelihoods, equitable distribution of their benefits, and sociocultural disparities may all underpin the drivers of conflict that motivate individuals and groups to take up arms. It is critical that DDR practitioners take these linkages into account to avoid exacerbating existing grievances or creating new conflicts, and to effectively use natural resource management to contribute to sustainable peace. This module aims to contribute to DDR processes that are grounded in a clear understanding of how natural resource management can contribute to sustainable peace and reduce the likelihood of a resurgence of conflict. It considers how DDR practitioners can integrate youth, women, persons with disabilities and other key specific needs groups when addressing natural resource management in reintegration. It also includes guidance on relevant issues related to natural resource management, including public health, disaster-risk reduction, resilience and climate change. With enhanced interagency cooperation, coordination and dialogue among relevant stakeholders working in DDR, natural resource management and governance sectors \u2013 especially national actors \u2013 these linkages can be addressed in a more conscious and deliberate manner for sustainable peace. Lastly, this module recognizes that the degree to which natural resources are incorporated into DDR processes will vary based on the political economy of a given context, resource availability, partners and capacity. While some contexts may have different agencies or stakeholders with expertise in natural resource management to inform context analyses, assessment processes, and subsequent programme design and implementation, DDR processes may also need to rely primarily on external experts and partners. However, limited natural resource management capacities within a DDR process should not discourage practitioners from capitalizing on the opportunities or guidance available, or from seeking collaboration and possible programme synergies with other partners that can offer natural resource management expertise. For example, in settings where the UN has no mission presence, such capacity and expertise may be found within the UN country team, civil society and/or academia.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "2818cde1-191f-4b11-8dcf-00e1828fb870", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "1. Module scope and objectives This module provides DDR practitioners \u2013 in mission and non-mission settings \u2013 with necessary information on the linkages between natural resource management and integrated DDR processes during the various stages along the peace continuum. The guidance provided highlights the role of natural resources in all phases of the conflict cycle, focusing especially on the linkages with armed groups, the war economy, and the ways that natural resource management can support successful DDR processes. It also emphasizes the ways that natural resource management can support the additional goals of gender-responsive reconciliation, resilience to climate change, and sustainable reintegration through livelihoods and employment creation. The module highlights the risks and opportunities presented by natural resource management in an effort to improve the overall effectiveness and sustainability of DDR processes. It also seeks to support DDR practitioners in understanding the associated risks that threaten people\u2019s health, livelihoods, security and opportunities to build economic and environmental resilience against future crises.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "58e5dd38-a2de-42cd-8d2f-2a5831060bdf", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 4, - "Paragraph": "2. Terms, definitions and abbreviations Annex A contains a list of abbreviations used in this standard. A complete glossary of all the terms, definitions and abbreviations used in the IDDRS series is given in IDDRS 1.20. In the IDDRS series, the words \u2018shall\u2019, \u2018should\u2019, \u2018may\u2019, \u2018can\u2019 and \u2018must\u2019 are used to indicate the intended degree of compliance with the standards laid down. This use is consistent with the language used in the International Organization for Standardization standards and guidelines: a) \u2018shall\u2019 is used to indicate requirements, methods or specifications that are to be applied in order to conform to the standard; b) \u2018should\u2019 is used to indicate the preferred requirements, methods or specifications; c) \u2018may\u2019 is used to indicate a possible method or course of action; d) \u2018can\u2019 is used to indicate a possibility and capability; e) \u2018must\u2019 is used to indicate an external constraint or obligation. Natural resource management refers to activities related to the management of natural capital stocks, (monitoring, control, surveys, administration and actions for facilitating structural adjustments of the sectors concerned) and their exploitation (e.g., abstraction and harvesting). Natural resources are any natural assets (raw materials) occurring in nature that can be used for economic production or consumption. These may include, but are not limited to, hard commodities such as minerals, gemstones, petroleum resources, timber or other geological resources. They can also include soft commodities such as agricultural products like cocoa, palm oil, sugar, coffee, wheat and other highly traded global commodities. Natural resources can also include endangered rare species of flora and fauna (including those used in narcotics) and related products traded on global markets. Sustainable use of natural resources refers to the exploitation or management of natural resources in a way that ensures their long-term availability to support development for future generations. War economy refers to the economic structure developed to support armed conflict in a given jurisdiction, whether set up by the existing Government or an armed group. The war economy includes legal and illegal exploitation of natural resources with the aim of supporting one or more sides of a conflict.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "3e6befae-b78d-49a9-829d-4009585f619b", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 5, - "Paragraph": "3. Introduction When well-managed, natural resources have the potential to support sustainable peace and development, and to address long-standing grievances. However, there is also mounting evidence that in many violent conflicts worldwide a strong link exists between armed conflict and weak governance or mismanagement of natural resources, dynamics which also contribute to violent conflict. Over the past 60 years, at least 40 per cent of all intrastate conflicts were linked to natural resources. Furthermore, conflicts where natural resources are implicated have been shown to be more likely to relapse into violence within five years. Looking back over the history of UN peacekeeping operations, nearly 20 missions have been deployed to conflicts fuelled or financed by natural resources, yet only a few of these missions have had a direct mandate to tackle natural resource challenges. However, the United Nations recognizes the need to incorporate the environmental and natural resource dimensions of conflict and peacebuilding along the entire peace continuum, as evidenced in the UN Sustainable Development Cooperation Framework, the Humanitarian Response Plan and/or the Integrated Strategic Framework across multiple settings. Although risks exist, natural resource management also has the potential to enable sustainable peace, including through sustainable development that contributes to job creation, reduced grievances and equitable sharing of benefits from natural resources. Through sound management, individuals and societies can employ natural resources in ways that secure livelihoods, generate tax revenues, stimulate exports and engage the private sector in employment creation. Furthermore, natural resource management provides both temporary (Track A) and more sustainable (Track B) employment opportunities, as outlined in the United Nations Post Conflict Policy for Employment Creation, Income Generation and Reintegration. In DDR contexts where strong governance is present, policy processes may specifically target natural resource sectors \u2013 including forestry, mining and conservation \u2013 to support job creation for long-term sustainable peace. Since natural resources underpin livelihoods for most populations in post-conflict contexts, DDR practitioners should analyse any ways in which special-needs groups \u2013women, youth, persons with disabilities or different vulnerable populations \u2013 can safely access and productively use natural resources. Gender issues, in particular, are crucial for sustainability and efficiency in economic recovery when it comes to natural resource management, as gender norms in society can affect the division of labour between men and women and the distribution of capital assets, including land, credit, skills and participation in decision-making, often negatively impacting women. Gender can also impact whether natural resources can be accessed and used safely; for example, the provisioning of essential natural resources for daily subsistence by women and girls, such as gathering firewood or charcoal, often puts them at risk for sexual and gender-based violence. In other cases, the physical strength needed to work in natural resource management sectors can prohibit women from accessing these kinds of economic opportunities (e.g., certain roles in forestry or mining). In addition to their economic benefits, natural resources can play an important role in supporting successful social reintegration and reconciliation through community-based approaches to natural resource management, including promoting access to grievance- and dispute-resolution mechanisms. To ensure that growth in natural resource management sectors will contribute positively to peace efforts, DDR practitioners shall undertake all necessary efforts to understand the risks and opportunities and fully analyse and incorporate them into process planning, design and implementation. The linkages between organized criminal groups, armed forces and groups, and illicit trade \u2013 including their impact on local community actors \u2013 should also be taken into account. These include the potential for poor natural resource management, coupled with weak governance, to lead to further grievances and recruitment. Since natural resource management takes place at the local, regional and national levels, there are multiple opportunities to work cooperatively with relevant stakeholders during DDR processes.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "0712082c-8731-437a-b7bd-70d72381f7b5", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 6, - "Paragraph": "4. Guiding principles IDDRS 2.10 on The UN Approach to DDR sets out the main principles that guide all aspects of DDR processes. This section outlines how these principles apply to the linkages between DDR and natural resource management.", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "8ba8492f-ca6b-421e-9b42-dd0974440c6f", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.1 People centred Natural resources can be used to support or to undermine development and sustainable peace. Ultimately, natural resources are part of the naturally protected rights of the citizens of any sovereign nation, and DDR practitioners must seek to protect and respect these rights in accordance with relevant international and national laws and policies (including customary law). In particular, DDR practitioners shall seek advice from human rights officers, experts on rule of law and experts on natural resource management, especially if the land and other rights of indigenous or otherwise marginalized communities are potentially affected.", - "Can": true, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "f0cf2eed-8d15-4d06-b8a5-0d0152a12cad", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 6, - "Paragraph": "4.2 Gender responsive and inclusive Equitable participation and access to natural resource\u2013related opportunities and benefits shall be ensured for women, men, girls and boys, regardless of their ethnicity, sexual orientation and other intersecting factors. For DDR practitioners, a special emphasis should be placed on helping to secure tenure and access to land and other resources within existing or proposed frameworks for women and girls, since this is shown to be key to their successful reintegration, as well as on providing both male and female DDR participants and beneficiaries with equitable access to economic reintegration opportunities in natural resource management sectors. As part of DDR assessments, a specific gender analysis \u2013 carried out in consultation with female and male participants and community members in their preferred language \u2013 should be undertaken to map the gender-specific roles and responsibilities in natural resource management and gender division of labour as well as associated risks and protection concerns. Based on the analysis, DDR practitioners shall promote the equal participation and decision-making opportunities of female and male participants and beneficiaries in natural resource management.", - "Can": false, - "May": false, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "251190bb-3b35-41f3-97d2-e30165c51a95", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 7, - "Paragraph": "4.3 Conflict sensitive As outlined in IDDRS 2.10, \u2018do no harm\u2019 is a standard principle against which all DDR programmes, DDR-related tools and reintegration support shall be evaluated at all times. In the case of natural resources, DDR practitioners shall ensure that they are not implementing or encouraging practices that will threaten the long-term sustainability of natural resources and the livelihoods that depend on them. Further, they should ensure that they will not contribute to potential environment-related health problems for affected populations; this is particularly important when considering water resources, land allocation and increase in demand for natural resources by development programmes or aid groups (such as increased demand for charcoal, timber, etc., without proper management measures in place). Finally, DDR practitioners should approach natural resource issues with sensitivity to ensure that interventions do not exacerbate conflict or grievances around natural resources or other existing community tensions (such as those based on ethnic, religious, racial or other dimensions), do not contribute to any environmental damage, and are equipped to deal with potential tensions related to natural resource management. In particular, sectors targeted by reintegration programmes should be carefully analysed to ensure that interventions will not cause further grievances or aggravate existing tensions between communities; this may include encouraging the establishment of grievance- and dispute-resolution mechanisms.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "6976da6f-c12f-4082-afd7-bcf31f0db432", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "4.4 Context specific DDR processes shall be context specific to reflect both the nature of the conflict and the role of natural resources in the conflict, taking into account the national, regional and global implications of any activities. The specific role of natural resources should be considered in each context by DDR practitioners, including where natural resources are part of underlying grievances, or where they are being exploited directly by armed forces, armed groups or organized criminal groups \u2013 or by local communities under the auspices of these actors \u2013 to control territories or finance the purchase of weapons and ammunition. DDR practitioners should also consult any civil society organizations, academic institutions and other experts that may be available at the local level to inform interventions. Local experts may be included in assessments of all types of local institutions, armed groups, organized criminal groups, and political activities, as well as in the development and implementation of DDR processes. Where possible and appropriate, DDR processes should seek to adopt livelihoods strategies and employment-generation opportunities that respect human rights and the rights of indigenous peoples and local communities; promote sound natural resource management, participatory decision-making and conflict sensitivity; and do not exploit natural resources at unsustainable rates. DDR practitioners should focus on promoting sustainable livelihoods and consider incorporating environmental feasibility studies for any projects based on natural resource exploitation. They should also ensure that post-project impact monitoring and evaluation include the environment, natural resources and ecosystem services, especially where the latter relates to disaster-risk reduction and resilience in the face of climate change.", - "Can": false, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b8872892-c702-47a3-8088-e83a4db0b086", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.5 Flexible, accountable and transparent DDR processes are undertaken in the context of national and local frameworks that must comply with relevant rights and obligations under international law (see IDDRS 2.11 on The Legal Framework for UN DDR). Whether in a conflict setting or not, the State and any regional law enforcement authorities have the responsibility to implement any criminal justice measures related to the illegal exploitation and/or trafficking of natural resources, including instances of scorched-earth policies or other violations of humanitarian or human rights law. DDR practitioners shall also take into account any international or regional sanctions regimes in place against the export of natural resources. When the State itself is directly involved in these activities, DDR practitioners must be aware and factor this risk into interventions.", - "Can": false, - "May": false, - "Shall": true, - "Should": false, - "Must": true - }, - { - "ID": "247b81e5-b3e3-4e95-9a60-ea856029458a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.6 Nationally and locally owned Every context is unique when it comes to natural resource management, depending on the characteristics of local ecosystems and existing sociocultural relationships to land and other natural resources. The strength of local and national governance can also impact how natural resources may be treated by DDR processes. Specifically, a weak State can invite illicit exploitation and trafficking of natural resources in ways that may fuel or exacerbate armed conflict. DDR practitioners should ensure that they thoroughly understand these dynamics through assessments and risk management efforts when designing interventions. For DDR processes, local communities and national institutions \u2013 including relevant line ministries \u2013 are sources of critical knowledge and information. For this reason, DDR processes shall explicitly incorporate national and local civil society organizations, academic institutions, and private-sector and other stakeholders into intervention planning and implementation where appropriate. Since international mandates and resources for DDR processes are limited, DDR practitioners shall seek to build local capacities around natural resource management whenever possible and shall establish relevant local partnerships to ensure coordination and technical capacities are available for the implementation of any interventions incorporating natural resource management. In some cases, natural resource management can be used as a platform for reconciliation and trust building between communities and even regional actors. DDR practitioners should seek to identify these opportunities where they exist and integrate them into interventions.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7350afd5-816c-47a0-a9f2-f2782f993380", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 8, - "Paragraph": "4.7 Regionally supported In cases where natural resources are exploited and trafficked to finance the activities of armed forces and groups or organized criminal groups active in conflict settings, regional dynamics may be at play. Private-sector and government actors from neighbouring States may be implicated in the trade of natural resources, and DDR practitioners should engage these stakeholders as much as possible to control for these risks and to identify opportunities to create a regional environment conducive to sustainable peace.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "60f412ea-0cce-43cb-aa1b-9c9b0aca9eb9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 9, - "Paragraph": "4.8 Integrated DDR processes will be more successful when considerations related to natural resource management are integrated from the earliest assessment phase through all stages of strategy development, planning and implementation. Expertise within the UN system and interagency partners should inform the interventions of DDR processes, in tandem with local and national expertise and knowledge.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f2757409-c5a4-4cdd-b11d-4d82b8da789a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5. Natural resources in conflict settings In contexts with poor governance, weak diversification and poor sectoral linkages, natural resources may be exploited to sustain the political and military agendas of armed forces and/or other groups. This dynamic contributes to a broader war economy that may incentivize unsustainable exploitation, resource grabs and human rights abuses that may be related, although not exclusively, to the environment and natural resources. When captured by armed forces and groups or organized criminal groups, high-value commodity sectors with significant global demand - such as minerals, oil and gas, timber and other agricultural commodities - represent a serious threat to peace, security and development. These commodities may include charcoal, timber, ivory, gems and minerals, as well as agricultural commodities like cocoa and palm oil. This trade links conflict actors to the global economy and ultimately to the end consumer of the good or service, thereby implicating a multitude of stakeholders, from the local private sector to regional and global multinational enterprises and their investors. The exploitation of natural resources and associated environmental stresses, such as the contamination of soil, air or water during extraction processes, can impact all phases of the conflict cycle, from contributing to the outbreak and perpetuation of violence to undermining prospects for peace. In addition, the environment itself may be damaged through scorched-earth tactics in order to harm specific groups of people or to render land and areas unusable by opposing groups. In extreme cases, land can also be damaged when communities are significantly displaced, and populations may be forced to degrade the natural resource base to survive. This environmental damage, coupled with the collapse of institutions and governance practices, can threaten people\u2019s health and livelihoods and undermine security. It may also undermine a country\u2019s capacity to achieve the 2030 Agenda for Sustainable Development, and exacerbate vulnerabilities to climate change and natural disasters. Identifying the role of natural resources in armed conflict is a necessary starting point for effectively addressing the factors that may have caused or sustained conflict, could trigger a relapse into violence, or may impede the process of consolidating sustainable peace. Analyses and assessments on environmental and natural resource issues can help DDR practitioners to identify the ways in which natural resources are intentionally and/or inadvertently utilized, exploited, depleted and destroyed as part of conflict. While the UN has increasingly adopted guidance on integrating natural resource considerations into its peacebuilding assessments and interventions, in practice, natural resources are still too often considered \u2018too hard to fix\u2019 and viewed as an issue to be addressed at a later stage in the recovery or peacebuilding process. However, these perspectives fail to take into account the broad and changing nature of threats to national and international security, as well as opportunities for natural resource management to contribute to sustainable peace. Integrating natural resource management issues into peacebuilding \u2013 and DDR in particular \u2013 should be seen as a security imperative, given the strong linkages between natural resources and conflict. Deferred action or uninformed choices made early on often establish unsustainable trajectories of recovery that can undermine long-term peace and stability. At the same time, natural resource management offers important opportunities for sustainable livelihoods recovery, employment creation and reconciliation. The following sections provide a frame of reference to support the improved consideration of natural resources in DDR processes. To apply this frame, DDR practitioners should seek appropriate expertise and work across various national and international agencies to gather the information related to natural resources needed to inform interventions. The relationship between natural resources, the environment and conflict is multidimensional and complex, but three principal pathways can be drawn. These pathways are described in more detail in the following sections.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "5670a339-a4bd-4234-93d6-4c15bdcc5718", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 10, - "Paragraph": "5.1 Contributing to the causes of conflict Natural resources underpin livelihoods and the sociocultural rights of peoples in many parts of the world. When access to these resources is disrupted \u2013 especially where long-standing historic grievances (real or perceived) over access to land and resources are present \u2013 natural resources may be more easily exploited to encourage recruitment by armed groups. This relationship can be complex, but there is evidence in the historical record of how access to land or other natural resources can motivate parties to a conflict. Grievances related to land (communal or individually owned) and access to resources can be deeply embedded in the historical narrative of peoples and hugely motivating for individuals and groups to participate in violent conflict. These dynamics are critical for DDR practitioners to understand and to factor into planning. Natural resources can also contribute to the causes of conflict where their governance and management have privileged certain social or ethnic groups over others. Marginalized groups, excluded from access to natural resources and related benefits, may be more inclined to participate in the illicit or informal economy where armed conflict is present, thereby potentially engaging in livelihoods sectors less protected by labour regulations. They may also be more likely to participate in the activities of organized criminal groups involved in the exploitation of natural resources. These dynamics can further undermine the ability of the Government to provide benefits (i.e., education, health care and development) and resources to communities due to a loss of tax revenue from formal economic sectors, and can create the right conditions for illicit trade in weapons, ammunition and other illicit goods. This combination of factors can increase the likelihood that additional resentments will build and fuel recruitment into armed forces and groups. Finally, in some cases, scorched earth tactics may be used to gain control of a particular territory, resulting in significant displacement of populations and permanent damage to the environment. To secure a strategic advantage, demoralize local populations or subdue resistance, leaders and members of armed forces and groups may pollute water wells, burn crops, cut down forests, poison soils and kill domestic animals. In some cases, entire ecosystems have been deliberately targeted to achieve political and military goals. These tactics can result in grievances that ultimately undermine DDR processes and sustainable peace, and limit the positive role that natural resource management can play in sustaining peace.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "852f8e4c-8080-4b5e-a5f6-d6f79c37b980", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 10, - "Paragraph": "5.2 Financing and sustaining conflict Once armed conflict is under way, natural resources are often targeted by armed forces and groups, as well as organized criminal groups, to trade for revenues or weapons and ammunition. These resources may be used to finance the activities of armed forces and groups, including their ability to compensate recruits, purchase weapons and ammunition, acquire materials necessary for transportation or control of strategic territories, and even expand territorial control. The exploitation of natural resources in conflict contexts is also closely linked to corruption and weak governance, where Government, organized criminal groups, the private sector, and armed forces and groups become interdependent through the licit or illicit revenue and trade flows that natural resources provide. In this way, armed groups and organized criminal groups can even capture the role of Government and integrate themselves into political processes by leveraging their influence over trade and access to markets and associated revenues (see IDDRS 6.40 on DDR and Organized Crime). In addition to capturing the market for natural resources, the financing of weapons and ammunition may permit armed forces and groups to coerce or force communities to abandon their lands and territories, depriving them of livelihoods resources such as livestock or crops. Hostile takeovers of land can also target valuable natural resources for the purpose of taxing their local trade routes or gaining access to markets and/or licit or illicit commodity flows associated with those resources. This is especially true in contexts of weak governance. Conflict contexts with weak governance are ripe for the proliferation of organized criminal groups and capture of revenues from the exploitation and trade of natural resources. However, this is only possible where there are market actors willing to purchase these resources and to engage in trade with armed forces and groups. This relationship may be further complicated on the ground by the various actors involved in markets and trade, which could include government authorities in customs and border protection, shell companies created to distort the paper trail around this trade and subvert efforts at traceability by markets further downstream (i.e., closer to the end consumer), or direct involvement of Governments surrounding the country experiencing violent conflict to facilitate this trade. In these cases, the private sector at the local and national levels, as well as buyers in international markets, may be implicated, whether the resources are legally or illegally traded. The relationship between the private sector and armed forces and groups in conflict is complex and can involve trade, arms and financial flows that may or may not be addressed by sanctions regimes, national and international regulations, or other measures. Tracing conflict resources in global supply chains is inherently difficult; these materials may be one of hundreds that are part of a product purchased by an end user and may be traded through dozens of markets and jurisdictions before they end up in a manufacturing process, allowing multiple opportunities for the laundering of resources through fake certificates in the chain of custody. Consumer goods companies find the traceability of materials to a point of origin challenging in the best of circumstances; the complexities of a war economy and outbreak of violent conflict make this even more complicated. However, technologies developed in recent years \u2013 including chemical markers, radio-frequency identification tags and QR codes \u2013 are growing more and more reliable, and the manufacturers, brands and retailers who sell products that contain conflict resources are increasingly subject to legal regimes that address these issues, depending on where they are domiciled. Worldwide, legal regimes that address conflict resources in global supply chains are still nascent, but awareness of these issues is growing in consumer markets, and technological solutions to traceability and company due diligence challenges are rapidly emerging. Many groups are working to track the trade in conflict resources, and DDR practitioners can collaborate with them to ensure they are able to identify critical changes and shifts in the activities, tactics and potential resource flows of armed forces and groups. DDR practitioners should seek out these resources and engage these stakeholders to support assessments and the design and implementation of DDR processes whenever appropriate and possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "44e5d7a2-9613-4a34-847a-d36f3d5424ae", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "5.3 Contributing to reconciliation and sustaining peace Governance institutions and state authorities, including those critical to accountability and transparency, may have been eroded by conflict or weak to start with. When tensions flare and lead to armed conflict, rule of law breaks down and the resulting institutional vacuum can lead to a culture of impunity and corruption. This collapse of governance structures contributes directly to widespread institutional failures in all sectors, allowing opportunistic individuals, organized criminal groups, armed groups and/or private entities to establish uncontrolled systems of resource exploitation. At the same time, public finances are often diverted for military purposes, resulting in the decay of, or lack of investment in, water, waste management and energy services, with corresponding health and environmental contamination risks. During a DDR process, the success and the long-term sustainability of natural resource\u2013based interventions will largely depend on whether there is a good, functioning governance structure at the local, subregional, national or regional level. The effective and inclusive governance of natural resources and the environment should be viewed as an investment in conflict prevention within peacebuilding and development processes. Where past activities violate national laws, it is up to the State to exercise its jurisdiction, but egregious crimes constituting gross violations of human rights, as often seen with scorched earth tactics, oblige DDR processes to exclude any individuals associated with these events from participating (see IDDRS 2.11 on The Legal Framework for UN DDR). However, there may be other jurisdictions where multinational private entities can be targeted and pressured or prosecuted to cut their ties with armed forces and organized criminal groups in conflict areas. Sanctions set by the UN Security Council may also be brought to bear where they cover natural resources that are trafficked or traded by private-sector entities and armed forces and groups. DDR practitioners will not be able to influence, control or focus upon all aspects of natural resource governance. However, through careful attention to risk factors in the planning, design and implementation of natural resource\u2013based activities, DDR processes can play a multifaceted and pivotal role in paving the way for good natural resource governance that supports sustainable peace and development. Moreover, DDR practitioners can ensure that access to grievance- and non-violent dispute-resolution mechanisms are available for participants, beneficiaries and others implicated in the DDR process, to mitigate the risks that natural resources pose for conflict relapse. Furthermore, environmental issues and protection of natural resources can serve as effective platforms or catalysts for enhancing dialogue, building confidence, exploiting shared interests, and broadening cooperation and reconciliation between ex-combatants and their communities, between communities, between communities and the State, and between States. People and cultures are closely tied to the environment in which they live and to the natural resources upon which they depend. In addition to their economic benefits, natural resources and ecosystem services can support successful social reintegration and reconciliation. In this sense, the management of natural resources can be a tool for engaging community members to work together, to revive and strengthen traditional natural resource management techniques that may have been lost during the conflict, and to encourage cooperation towards a shared goal, between and among communities and between communities and the State. In settings where natural resources have played a significant role in the conflict, DDR practitioners should explore opportunities for addressing underlying grievances by promoting equitable and fair access to natural resources, including for women, youth and participants with disabilities. Access to natural resources, especially land, often carries significant importance for ex-combatants during reintegration, particularly for female ex-combatants and women associated with armed forces and groups. Whether the communities are their places of origin or are new to them, ensuring that they have access to land will be important in establishing their social status and ensuring that they have access to basic resources for livelihoods. In rural areas, it is essential that DDR practitioners recognize the connection between land and social identity, especially for young men, who often have few alternatives for establishing their place in society, and for women, who are often responsible for food security and extremely vulnerable to exclusion from or lack of access to land. To support social reintegration and reconciliation, as well as to enhance peacebuilding, DDR practitioners should seek to support reintegration activities that empower communities affected by natural resource issues, applying community-based natural resource management (CBNRM) approaches where applicable and promoting inclusive approaches to natural resource management. Ensuring that specific needs groups such as women and youth receive equitable access to and opportunities in natural resource sectors is especially important, as they are essential to ensuring that peacebuilding interventions are sustainable in the long term.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "68baf8b5-ac4c-4399-9899-cab1ab041c16", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 13, - "Paragraph": "6. DDR and natural resources: planning considerations At the outset, there are several key risk factors to consider when looking to leverage natural resources to support DDR processes. Depending on where DDR practitioners are working along the peace continuum, the following are three key areas where risks and opportunities should be considered: Supporting economic recovery: When natural resources are properly governed and carefully managed, \u2018high-value\u2019 resources (such as hydrocarbons, minerals, metals, stones and export timber) can form an important basis for employment creation and budget revenue for development. With close attention to whether a robust framework is in place with respect to land rights, and subsurface natural resource rights as a pre-cursor, engagement with private-sector entities can help to facilitate these types of opportunities, whether for high-value natural resources or agricultural commodities with significant market value such as coffee, cocoa, grains and other soft commodities. The risk, however, is that the pressure to kick-start development and earn foreign exchange can lead to rapid, uncontrolled exploitation of such resources at suboptimal prices, without due attention to land and subsurface resource rights, environmental sustainability, employment creation and the equitable distribution of revenues. When the benefits are not shared, or when exploitation results in environmental degradation, the potential for conflict to resume is high. Developing sustainable livelihoods for peace: Sustainable peace fundamentally hinges on the development of sustainable livelihoods, the provision of basic services, and the recovery and sound management (including equitable distribution of related benefits) of the natural resource base. Environmental damage caused by conflicts, coping strategies and chronic environmental problems (including climate change impacts) that undermine livelihoods must therefore be addressed from the outset. Minimizing vulnerability to natural hazards and climate change through the management of key natural resources and the introduction of appropriate technologies may also be addressed. Women and children are often disproportionately affected by environmental contamination economically and socially, as well as in terms of their health and well-being. DDR practitioners should therefore seek to address the specific needs of women and children in relation to their dependence on natural resources and risks involved. Careful coordination and attention to issues of land access, tenure and the availability of agricultural inputs and access to financing are critical elements for ensuring success and sustainability. Women, especially those who are unmarried, who are not closely associated with a male relative, or who face stigma or discrimination due to other circumstances (sexual violence survivors, single mothers, etc.) are often disadvantaged in their access to capital assets, as women\u2019s ownership rights are frequently based on de facto agreements among male community members and traditional gender roles may prevent women and girls from accessing education and capacity-building. Contributing to dialogue, reconciliation and confidence building: Natural resources can be a neutral entry point or a catalyst for enhancing dialogue, building confidence, exploring shared interests and broadening cooperation between divided communities as well as within and between States. Such actions should aim to use an inclusive approach that seeks to consider and respond to the needs of the entire population, especially women and youth. Bringing communities together to discuss and resolve common challenges and concerns, such as access to water points and grazing lands, can be a powerful peacebuilding tool and can help to mitigate the risk of further conflict between groups competing for natural resources.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "9c0676d9-d077-4fb6-9529-72ed5065fcce", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 14, - "Paragraph": "6.1 Assessments and design During the pre-planning and preparatory assistance phase, DDR practitioners should clarify the role natural resources may have played in contributing to the causes of conflict, if any, and determine whether DDR is an appropriate response or whether other types of interventions could be employed. In line with IDDRS 3.11 on Integrated Assessments, DDR practitioners should factor the linkage between natural resources and armed forces and groups, as well as organized criminal groups, into baseline assessments, programme design and exit strategies. This includes identifying the key natural resources involved, in addition to key individuals, armed forces and groups, any known organized criminal groups and/or Governments who may have used (or continue to use) these particular resources to finance or sustain conflict or undermine peace. The analysis should also consider gender, disability and other intersectional considerations by examining the sex- and age-disaggregated impacts of natural resource conflicts or grievances on female ex-combatants and women associated with armed forces and groups. The assessments should seek to achieve two main objectives and will form the basis for risk management. First, they should determine the role that natural resources have played in contributing to the outbreak of conflict (i.e., through grievances or other factors), how they have been used to finance conflict, and how natural resources that are essential for livelihoods may have been degraded or damaged due to the conflict or become a security factor (i.e. for women and girls, but also boys and men) at a community level. Second, they should seek to anticipate any potential conflicts or relapses into conflict that could occur as a result of unresolved or newly aggravated grievances, competition or disputes over natural resources, continued war economy dynamics, and the risk of former combatants joining ranks with criminal networks to continue exploiting natural resources. Such assessments require working closely with national actors through coordinated interagency processes. Once these elements have been identified, and the potential consequences of such analysis are fully understood, DDR practitioners can seek to explicitly address them. Where appropriate, DDR practitioners should ensure that assessment activities include input from technical experts on land and natural resources. These technical experts should also display expertise in recognizing the social, psychological and economic livelihoods issues connected to natural resources to be able to properly inform programme design. The participation of local civil society organizations and groups with knowledge on natural resources will also aid in the formation of a holistic perspective during the assessment phase. In addition, special attention should be given to gathering relevant information on issues of access to land (both individually owned and communal), water and other natural resources, especially for women and youth. Land governance and tenure issues \u2013 including around subsurface resource rights \u2013 are likely to crop up in almost every context where DDR processes are implemented. DDR practitioners should identify existing efforts and potential partners working on issues of land governance and tenure and use this as a starting point for assessments to identify the risk and opportunities associated with related natural resources. Land governance will underpin all other natural resource sectors and should be a key element of any assessment carried out when planning DDR. While DDR processes cannot directly overcome challenges related to land governance, DDR practitioners should be aware of the risk and opportunities that current land governance issues present and do their best to mitigate these through planning and implementation.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d5b24504-9407-4908-8519-ac8e13796d84", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 15, - "Paragraph": "6.1.1 Natural resources and conflict linkages To determine if natural resources have played (or continue to play) a critical role in armed conflict, assessments should seek to understand the key actors in the conflict and their linkages to natural resources (see Table 1). Assessments should also identify: Key financial and strategic benefits and drawbacks of the identified resources on all warring parties and civilian populations affected by the conflict. The nature and extent of grievances over the identified natural resources (real and perceived), if any. The location of implicated resources and overlap with territories under the control of armed forces and groups. The role of sanctions in deterring illegal exploitation of natural resources. The extent and type of resource depletion and environmental damage caused by mismanagement of natural resources during the conflict. Displacement of local populations and their potential loss of access to natural resources. Cross-border activities involving natural resources. Linkages to organized criminal groups (see IDDRS 6.40 on DDR and Organized Crime). Linkages to armed groups designated as terrorist organizations (see IDDRS 6.50 on DDR and Armed Groups Designated as Terrorist Organizations). The various actors in the conflict and their relationship with natural resources. TABLE 1. LINKAGES of key actors TO NATURAL RESOURCES DURING ARMED CONFLICT The results of these assessments and the natural resource sectors targeted should indicate which planning and implementation partners will be required. A diverse range of partners should be sought, including those from local civil society as well as those working in and with the private sector. When planning and implementation partners have been identified, DDR practitioners should ensure that there are dedicated resources for a knowledge management focal point to track natural resource management, gender and other cross-cutting themes. Many DDR processes already use natural resource management in community violence reduction (CVR) or reintegration efforts. Without recognizing the potential risks and adopting adequate safeguards, DDR processes could have negative impacts on natural resources. See section 6.3 for information on how to recognize and mitigate these risks.", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "a4dc8e83-7ee4-4e6c-89bb-5daaaf5a7d63", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "6.1.2 Employment and livelihood opportunities DDR practitioners planning the implementation of employment and livelihoods programmes \u2013 for example, as part of a CVR or DDR programme \u2013 should also seek to gather information on the risks and opportunities associated with natural resources. For example, questions concerning natural resources should be integrated into the profiling questionnaires administered during the demobilization component of a DDR programme (see Box 2). These questionnaires seek to identify the specific needs and ambitions of ex-combatants and persons formerly associated with armed forces and groups (for further information on profiling, see section 6.3 in IDDRS 4.20 on Demobilization). Questions related to natural resources should also be included in assessments conducted for the purpose of designing reintegration programmes. For sample questions, see Table 2, and, for further information on reintegration assessments, see section 7 in IDDRS 4.30 on Reintegration. Many of these sample questions may also be relevant for the design of CVR programmes (see IDDRS 2.30 on Community Violence Reduction). At a minimum, assessments focused on natural resources and employment and livelihood opportunities should encompass the demand for natural resources and any derived products in local, regional, national and international markets. They should also examine existing and planned private-sector activity in natural resource sectors. Assessments should also consider whether any areas environmentally degraded or damaged as a result of the conflict can be rehabilitated and strengthened through quick-impact projects (see section 7.2.1). DDR practitioners should seek to incorporate information gathered in Strategic Environmental Assessments and Environmental and Social Impact Assessments where appropriate and possible, to avoid unnecessary duplication of efforts. The data collected can also be used to identify potential reconciliation and conflict resolution activities around natural resources. These activities may, for example, be included in the design of reintegration programmes.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "4364f618-7c9b-444b-b9e4-5cc35525768b", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2 Specific-needs groups and cross-cutting issues To appropriately address the needs of all DDR participants and beneficiaries, a thorough analysis of groups with specific needs in natural resource management should be carried out as part of general DDR assessments. These considerations should then be mainstreamed throughout design and implementation. Specific-needs groups often include women and girls, youth, persons with disabilities and chronic illnesses, and indigenous and tribal peoples and local communities, but other vulnerabilities might also exist in different DDR contexts. Annex B presents a non-exhaustive list of questions that can be incorporated into DDR assessments pertaining to specific-needs groups and natural resource management.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9d505a6d-df02-4efa-a79a-beb3b102d297", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2.1 Youth Many conflict-affected countries have substantial numbers of youth \u2013 individuals between 15 and 24 years of age \u2013 relative to the rest of the population. Natural resources can offer specific opportunities for this group. For example, when following a value chain approach (see section 7.3.1) with agricultural products, non-timber forest products or fisheries, DDR practitioners should seek to identify processing stages that can be completed by youth with little work experience or skills. Habitat and ecosystem services restoration can also offer opportunities for young people. Youth can also be targeted as leaders through training-of-trainers programmes to further disseminate best practices and skills for improving the use of natural resources. When embarking on youth-focused DDR processes, efforts should be made to engage both male and female youth. While male youth are often the more visible group in conflict-affected countries, there are proven peace dividends in providing support to female youth. For additional guidance, see IDDRS 5.30 on Youth and DDR.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "1aa32b9e-af53-4b5e-8d0a-6db5699446f6", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 20, - "Paragraph": "6.2.2 Women and girls Women and girls often directly manage communal natural resources for their livelihoods and provide for the food security of their families (e.g., through the direct cultivation of land and the collection of water, fodder, herbs, firewood, etc.). However, they often lack tenure or official rights to the natural resources they rely on, or may have access to communal resources that are not recognized (or upheld if they are recognized) in local or national laws. DDR practitioners should pay special attention to ensuring that women are able to access natural resources, especially in situations where this access is restricted due to lack of support from a male relative. In rural areas, this is especially crucial for access to land, which can provide the basis for women\u2019s livelihoods and often determines their ability to access credit and take out loans. For example, where DDR processes link to land titling, they should encourage shared titling between male and female heads of households. In addition, DDR practitioners should ensure that employment opportunities and necessary skills training are available for girls and women in natural resource sectors, including non-traditional women\u2019s jobs. Moreover, DDR practitioners should ensure that women are part of any decision-making processes related to natural resources and that their voices are heard in planning, programmatic decisions and prioritization of policy. In cases where accessing natural resources for livelihoods has put women and girls at higher risk of sexual and gender-based violence, special care must be taken to establish safe and secure access to these resources, or a safe and secure alternative. Awareness and training of security forces may be appropriate for this, as well as negotiated safe spaces for women and girls to use to cultivate or gather natural resources that they rely on. DDR practitioners should ensure that these considerations are included in DDR assessments so that the safety and security risks to women and girls from accessing natural resources are minimized during the DDR process and beyond. For more guidance, see IDDRS 5.10 on Women, Gender and DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "46dafad0-2d16-4c46-8dda-af00ad3a5a49", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.3 Persons with disabilities Many DDR participants and beneficiaries will have experienced the onset of one or more physical, sensory, cognitive or psychosocial disabilities during conflict. DDR practitioners should ensure that in all contexts, including those in which natural resources are present, disability-inclusive DDR is integrated into the overall DDR process and is not pursued in a segregated, siloed fashion. Persons with disabilities have many different needs and face different barriers to participation in DDR and in activities involving the natural resources sector. DDR practitioners should identify these barriers and the possibilities for dismantling them when conducting assessments. DDR practitioners should seek expert advice from, and engage in discussions with, organizations of persons with disabilities, relevant NGOs and government line ministries working to promote the rights of persons with disabilities, as outlined in the United Nations Convention on the Rights of Persons with Disabilities (2006) and Standard Rules on the Equalization of Opportunities for Persons with Disabilities (1993).", - "Can": false, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "82a50b5f-e29d-4c21-beb2-66a3237f52c2", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.4 Health considerations Natural resource management can have profound implications for public health. For example, the use of firewood and charcoal for cooking can lead to significant respiratory problems and is a major health concern in many countries, particularly for women and children. Improved access to energy resources can help to mitigate this (see section 7.3.4). Other key health concerns include waste and water management, both natural resource management issues that can be addressed through CVR and reintegration programmes. DDR practitioners should include these considerations in assessments and seek to improve health conditions through natural resource management wherever possible. Other areas where health is implicated are related to the deforestation and degradation of land. Pushing the forest frontier can lead to increased exposure of local populations to wildlife that may transmit disease, even leading to the outbreak of pandemics. DDR practitioners should identify areas that have experienced high rates of deforestation and target them for reforestation and other ecosystem rehabilitation activities wherever possible, according to the results of assessments and risk considerations. For further guidance, see IDDRS 5.70 on Health and DDR.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "24220fdd-b0d6-44b4-baa0-a650888d5c31", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 21, - "Paragraph": "6.2.5 Indigenous and tribal peoples and local communities Indigenous and tribal peoples and local communities around the world have close traditional and cultural ties to land and other aspects of natural resources. They often have customary forms of managing natural resources that support overall goals of conservation and preservation of natural resources \u2013 including for food, medicines and cultural purposes \u2013 as a form of management. In many contexts, the rights of indigenous peoples to their land are undermined or under-recognized (or not recognized at all) in national legislation, leading to allocation of these lands through concessions or other acts to private companies or groups seeking to exploit them for commercial production of agricultural or forest commodities. The right to free, prior and informed consent may often be undermined or ignored. DDR practitioners should identify where indigenous peoples and local communities have claim to lands that are otherwise subjected to overlapping claims by private or state entities seeking to exploit these lands and, once identified, seek to support these groups with access to local civil society and other legal aid groups that can help them to advocate for their lands and resources. DDR practitioners can also ensure that representatives of indigenous groups and local communities are included in natural resource management decision-making at local, national and regional levels.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e6a9fa8e-305a-4a84-bee7-9fe1c6c36b8d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 22, - "Paragraph": "6.3 Risk management and implementation Following the abovementioned assessments, DDR practitioners shall develop an inclusive and gender-responsive risk management approach to implementation. Table 4 includes a comprehensive set of risk factors related to natural resources to assist DDR practitioners when navigating and mitigating risks. In some cases, there may be systems in place to mitigate against the risk of the exploitation of natural resources by armed forces and groups as well as organized criminal groups. These measures are often implemented by the UN (e.g., sanctions) but will implicate other actors as well, especially when the natural resources in question are traded in global markets and end up in products placed in consumer markets with protections in place against trade in conflict resources. DDR practitioners shall avoid being seen as supporting individuals or armed forces and groups that are targeted by sanctions or other regimes and work closely with national and international authorities. TABLE 3. RISKS FROM NATURAL RESOURCES FOR THE FINANCING OF ARMED FORCES AND GROUPS Depending on the context, different types of natural resources will be risk factors for DDR practitioners. In almost all cases, land will be a risk factor that can drive grievances, while also being essential to kick-starting rural economies and for the agricultural sector. Other natural resources, including agricultural commodities (\u2018soft commodities\u2019) or extractive resources (\u2018hard commodities\u2019), will come into play depending on the context. Once identified through assessments, DDR practitioners should further analyse the nature of the risk based on the natural resource sectors present in the particular context, as well as the opportunities to create employment through the sector. For each of the sectors identified in Table 4, DDR practitioners should note the particular risk and seek expertise to implement mitigating factors. TABLE 4. NATURAL RESOURCE MANAGEMENT, RISK AND MITIGATING FACTORS", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "2aff659d-5cef-4629-b5b9-e594cb7e6bc9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 25, - "Paragraph": "7. DDR programmes and natural resources To incorporate natural resources into the design and implementation of DDR programmes, DDR practitioners should ensure that technical capacities on natural resource issues exist in support of DDR, within DDR teams or national DDR structures (i.e., national government and military structures where appropriate), and/or are made available through partnerships with relevant institutions or partners, including representatives of indigenous peoples and local communities, or other civil society groups with relevant expertise. This may be done through the secondment of experts, providing training on natural resources, and consulting local partners and civil society groups with relevant expertise. During the programme development phase, risks and opportunities identified as part of the assessment and risk management process should be factored into the overall strategy for the programme. This can be accomplished by working closely with government institutions and relevant line ministries responsible for agriculture, land distribution, forestry, fisheries, minerals and water, as well as civil society, relevant NGOs, and the local and international private sector, where appropriate. DDR practitioners should ensure that all major risks for health, livelihoods and infrastructure, as well as disaster-related vulnerabilities of local communities, are identified and addressed in programme design and implementation, including for specific-needs groups. This is especially important for extractive industries such as mining, as well as forestry and agriculture, where government contracts and concessions that are being negotiated will impact local areas and communities, or where the extraction or production of the resources can result in pollution or contamination of basic life resources such as soils, air and water. Private-sector entities are increasingly pressured to conform to due diligence and transparency standards that seek to uphold human rights, labour rights and sustainable development principles, and DDR practitioners can leverage these expectations to increase their cooperation. Local traditional knowledge about natural resource management should also be sought and built into the DDR programme as much as possible.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "e421ac3c-78df-4778-a5b7-683aa8ec0a15", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 25, - "Paragraph": "7.1 Disarmament Where the exploitation of natural resources is an entrenched part of the war economy and linked to the activities of armed forces and groups, as well as organized criminal groups, natural resources can be leveraged as a means of gaining control over certain territories and accessing weapons and ammunition. The main concern of DDR practitioners will be to support efforts to break the linkages between the flows of natural resources used to finance the acquisition of weapons and ammunition, including by working with actors involved in the implementation and monitoring of sanctions, including the UN Group of Experts, and contributing to strengthening the capacity of the security sector to reduce illicit weapons and ammunition flows. This can be difficult in contexts where members of armed groups and communities are unwilling to disarm because of concerns for their security. In such cases, transitional weapons and ammunition management (WAM) approaches may be needed (see section 8.2). To ensure that security objectives are achieved, DDR practitioners should examine the role of natural resources in the acquisition of weapons and ammunition and how weapons and ammunition are instrumental in exerting control over natural resources and access to the revenues from their trade. DDR practitioners should collaborate with relevant interagency stakeholders to ensure that natural resources are no longer used to finance the acquisition of weapons and ammunition for armed groups undergoing disarmament and demobilization or by individual combatants being disarmed and demobilized. When planning the destruction of weapons and ammunition, DDR practitioners should consider the environmental impact of the planned destruction. For further guidance on disarmament, see IDDRS 4.10 on Disarmament.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "74392180-6b12-4bcf-838d-191a36b7e97a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 26, - "Paragraph": "7.2 Demobilization Demobilization includes a reinsertion phase in which transitional assistance is offered to DDR programme participants for a period of up to one year, prior to reintegration support (see IDDRS 4.20 on Demobilization). Transitional assistance may be offered in a number of ways, including in-kind support, cash-based transfers, public works programmes and other income-generating activities. In contexts where there has been degradation of natural resources that are important for livelihoods or destruction of key water, sanitation and energy infrastructure, DDR programme participants can be employed in labour-intensive, quick-impact infrastructure or rehabilitation projects during the demobilization phase. When targeting natural resource management sectors, these projects can contribute to restoration and rehabilitation of environmental damages, increased protection of critical ecosystems, improved management of critical natural resources, and reduced vulnerability to natural disasters. Concerted efforts should be made to include women, youth, and elderly and disabled persons in planning and implementation of reinsertion activities.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "95e6a962-c872-4fee-8a4c-f56d4e2a1134", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "7.2.1 Quick-impact projects in natural resource management During reinsertion, DDR participants and beneficiaries can work on labour-intensive but unskilled activities that help to build their capacity and contribute to natural resource management. Examples of specific activities are included in Box 4. These types of activities are especially important in rural areas where many people depend on agriculture for their livelihoods. In urban areas, priority should be given to sanitation and access to water and health-related activities that will ensure that high-density areas are safe to live in. Activities designed to restore specific ecosystem functions, such as the restoration of mangroves to protect coastal communities from hurricanes or typhoons, or the stabilization of hillsides and mountains from heavy rains through reforestation or afforestation, can also improve the resilience of local communities to the increased frequency of natural disasters that accompany climate change. These efforts can be integrated into broader climate security efforts as well, through interagency coordination. DDR practitioners should prioritize investment in infrastructure projects that strengthen environmental resilience against future crises like climate change and natural disasters. The objective of addressing natural resources during the reinsertion phase of a DDR programme is to strengthen environmental resilience and lay the groundwork for sound, sustainable management of natural resources. Where possible, reinsertion activities should be linked to longer-term reintegration support (see Table 5).", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "9dec5564-19fd-408a-99a1-4ce9a623a9aa", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "7.2.2 Demining agricultural areas Landmines and explosive remnants of war take a heavy toll on people\u2019s livelihoods, countries\u2019 economic and social development, and peacebuilding efforts. Restoring agricultural lands to a productive state is paramount for supporting livelihoods and improving food security, two of the most important concerns in any conflict-affected setting. Demining fields and potential areas for livestock and agriculture will therefore provide an essential step to restoring safety and access to agricultural lands and shoring up the confidence of local populations in the peace process. To ensure that agricultural land is returned to safety and productivity as quickly as possible, where applicable, DDR programmes should seek specific demining expertise. Male and female DDR programme participants and beneficiaries may be trained in demining during the reinsertion phase of a DDR programme and be supported to continue this work over the longer-term reintegration phase.", - "Can": false, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "699f830d-2123-4129-a50c-61fbc2f82601", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 28, - "Paragraph": "7.2.3 Disposal and management of waste from conflict Conflicts often result in a large amount of waste and debris from the destruction of infrastructure, buildings and other resources. Short-term public works programmes can be used to clean up this debris and to provide income for community members and former members of armed forces and groups. Participants can also be engaged in the training, employment and planning aspects of waste and debris management. Attention should be paid to health and safety regulations in such activities, since hazardous materials can be located within building materials and other debris. Expertise on safe disposal options should be sought. Barriers to the participation of specific-needs groups should be identified and addressed.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "839cceca-6f92-49eb-86fb-dd126f59aa66", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 30, - "Paragraph": "7.3 Reintegration The guidance in this section is intended to complement IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration. DDR practitioners should seek to design reintegration activities that involve natural resources and support long-term sustainable livelihoods interventions. In conflict contexts, natural resource management is typically already a part of existing livelihoods and employment opportunities, in both formal and informal sectors. By carefully assessing and factoring natural resource management considerations \u2013 including foreseen impacts and potential threats from climate change \u2013 into reintegration efforts, DDR practitioners can help improve sustainability and resilience in these key livelihoods sectors. Together with national stakeholders and interagency coordination, promoting sound natural resource management may also create pathways to support key natural resource sectors to transition from the war economy and align with national development priorities. Engaging the private sector in the reintegration phase of a DDR programme is also an opportunity to formalize natural resource sectors. This is especially important for sectors that have been part of the root causes of conflict, continue to be exploited to finance conflict, or in which ex-combatants may already be engaged in informal employment or other income-generating activities. Changing these sectors helps to move the entire context from conflict towards sustainable peace. This is especially true in countries with significant potential for development of key natural resource sectors, whether in extractives or others. For example, individuals may join armed groups to access employment opportunities in the mining sector, but experience has shown that they prefer to work in mines regulated in the formal economy if they have the option. Support for the formalization of natural resource sectors may help reduce recruitment as well as create formal employment opportunities that will provide tax revenues for the State and be subject to national laws, including labour regulations. DDR practitioners must also consider both national and international private-sector actors as key contributors to economic revitalization. While it can be difficult to get accurate information on the activities of private companies and their agreements with Governments before, during and after conflict, DDR programmes offer an opportunity to engage with the private sector to enhance existing employment opportunities and to encourage their support for sustainable peace. DDR practitioners should determine the impacts and dependencies of the private sector on natural resources as part of their assessments and actively engage with local and international private companies to explore opportunities to generate employment and support community development through collaborations. This can help to identify existing and upcoming private-sector companies that could be engaged to supply training and employment to DDR programme participants and beneficiaries. In natural resource sectors, private companies can also provide much-needed expertise and support for infrastructure development. While this should be encouraged, DDR practitioners must also be aware that national policies and enforcement capacities also need to be in place for this to contribute to sustainable peace. For example, in countries where the Government is granting concessions to private entities for the exploitation of extractive or agricultural resources, sufficient due diligence requirements for transparency must be in place. These can include the ability for local communities to monitor company activities and the existence and enforcement of accompanying processes such as free, prior and informed consent and other principles of international norms included in the UN Guiding Principles on Business and Human Rights. Formalizing sectors that contribute to global supply chains, including minerals, timber or other high-demand agricultural commodities requires understanding the existing supply chain. This could mean working with existing actors and efforts contributing to improved transparency, traceability and engagement of emerging technologies and systems to support this. For instance, due diligence efforts in mineral supply chains are increasingly being digitized, thereby reducing the risk of fraud present with paper-based systems. In addition, electronic systems enable clearer tracing to downstream companies implicated in mineral supply chains that are also subject to regulations governing their risk of exposure to conflict in their supply chains. DDR practitioners should engage with these efforts to identify ways to target and improve employment opportunities for those participating in reintegration programmes, as well as to contribute to the overall stabilization of these sectors and their role in sustainable peace.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "57d2abba-ab48-4701-b73b-377ddb959da1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 31, - "Paragraph": "7.3.1 Value chain approaches and community-based natural resource management Value chains are defined as the full range of interrelated productive activities performed by organizations in different geographical locations to produce a good or service from conception to complete production and delivery to the final consumer. A value chain encompasses more than the production process; it also includes the raw materials, networks, flow of information and incentives between people involved at various stages. It is important to note that value chains may involve several products, including waste and by-products. Each step in a value chain process allows for employment and income-generating opportunities. Value chain approaches are especially useful for natural resource management sectors such as forestry, non-timber forest products (seeds, bark, resins, fruits, medicinal plants, etc.), fisheries, agriculture, mining, energy, water management and waste management. A value chain approach can strengthen the market opportunities available to support reintegration efforts, including improving clean technology to support production methods, accessing new and growing markets, and scaling employment and income-generation activities that are based on natural resources. DDR practitioners may use value chain approaches to enhance reintegration opportunities and to link opportunities across sectors. Engaging in natural resource sectors can be extremely contentious in conflict settings. To reduce any grievances or existing tensions over shared resources, DDR practitioners should undertake careful assessments and community consultations before including beneficiaries in economic reintegration opportunities in natural resource sectors. As described in the UN Employment Policy, community participation in these issues can help mitigate potential causes of conflict, including access to water, land or other natural resources. Capacity-building within the Government will also need to take place to ensure fair and equitable benefit sharing during local economic recovery. Reintegration programmes can benefit from engagement with private-sector entities to identify value chain development opportunities; these can be at the local level or for placement on international markets. If the activities undertaken during reintegration are to continue successfully beyond the end of reintegration efforts, communities and local authorities need to be placed at the centre of decision-making around the use of natural resources and how those sectors will be developed. It is therefore essential that reintegration programmes based on natural resources be conducted with input from communities and local civil society as well as the Government. Moving a step further, community-based natural resource management (CBNRM) approaches, which seek to increase related economic opportunities and support local ownership over natural resource management decisions, including by having women and youth representatives on CBNRM committees or village development committees, provide communities with strong incentives to sustainably manage natural resources themselves. Through an inclusive approach to CBNRM, DDR practitioners may ensure that communities have the technical support they need to manage natural resources to support their economic activities and build social cohesion. Due to their different roles and gendered divisions of labour, female and male community members may have different natural resource\u2013related knowledge, skills and needs that should be considered when planning and implementing CBNRM activities. Education and access to information are essential components of community empowerment and CBNRM programmes. This means that DDR practitioners should work to ensure that communities and specific-needs groups are fully informed of the risks and opportunities related to the natural resources and environment in the areas where they live. Providing communities with the tools and resources to manage natural resources can empower them to take ownership and to seek further engagement and accountability from the Government and private sector regarding natural resource management and governance.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "f5f10405-de53-4271-882e-86d070502549", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 33, - "Paragraph": "7.3.2 Reintegration support and land rights In both rural and urban contexts, property rights, land tenure and access to land may underpin grievances and lead to further disputes or conflicts that undermine reintegration and sustainable peace. Land issues can be particularly complicated in countries where land governance frameworks and accompanying laws are not fully in place, where tenure systems do not exist or are contested, and where there are not due processes to resolve conflicts over land rights. In many cases, the State may claim rights to land that communities claim historical rights to and grant these lands to companies as concessions for extractive resources or to develop agricultural resources for trade in domestic and international markets. In these cases, DDR practitioners should carefully analyse the existing state of land tenure and related grievances to understand how they relate to the conflict context and may contribute to or undermine sustainable peace. Interagency cooperation and collaboration with national authorities will be essential, especially close collaboration with civil society and representatives of local communities. Where possible, addressing land-related grievances should be a priority for DDR practitioners, with support from experts and other agencies with mandates and resources to undertake the necessary efforts to improve the land tenure system of a particular context. DDR practitioners shall follow international guidelines for land tenure in the assessment, design and implementation phases of reintegration programmes. Since land tenure issues are a long-term development challenge, it is essential that DDR practitioners work with other specialized agencies to address this and ensure that land tenure reform efforts continue after the reintegration programme ends. TABLE 6. LAND RIGHTS ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "7efed4d6-fd7e-4069-b87b-37d26c6a0edc", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 34, - "Paragraph": "7.3.3 Reintegration support and agriculture and fisheries In many conflict contexts, agriculture and fisheries are mainstays of economic activities and subsistence livelihoods. However, the resources needed for these activities, including access to land, livestock and grazing areas, and boats can be compromised or destroyed by conflict. Seasonal patterns associated with agriculture and fisheries activities are to be accounted for when providing reintegration support, especially when aiming to promote income-generation activities. DDR practitioners should analyse the agricultural sector to understand which crops are most important for livelihoods and work with experts to determine how reintegration efforts can support the revitalization of the sector after conflict, including consideration of seasonality of agricultural activities and any associated migration patterns, as well as changing climate and rainfall patterns that are likely to affect agriculture. As described at the beginning of this section, a value chain and CBNRM approach to these sectors can help to maximize the opportunities and success of reintegration efforts by supporting improved production and processing of a particular agricultural commodity or fisheries product. DDR practitioners should seek experts from national institutions, local communities and interagency partners to bring to bear as much technical expertise and as many resources as possible, including perspectives on which crop species and methods may yield the greatest impact in terms of resilience, sustainability and climate change adaptation. Improving resilience in the agricultural sector should be a high priority for DDR practitioners, with considerations for shifting rainfall patterns and the need for responsive mitigation factors related to climate change prioritized. Access to water, technology to manage crop seasons and improved varieties that are drought tolerant are some of the factors that DDR practitioners can take into consideration. DDR practitioners should consult experts for technical recommendations to improve the resilience of reintegration programmes in the agriculture sector, both in terms of ecological and technological improvements, as well as links and connections to markets and supply chains to improve prospects for long-term economic recovery. TABLE 7. AGRICULTURAL AND FISHERIES ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "ee04a865-79b4-4b9f-a88c-35cb34bf8640", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 35, - "Paragraph": "7.3.4 Reintegration support and forestry Forestry as an economic sector can employ a substantial number of people but requires sound management to be sustainable. Forest lands are also often the traditional territories of indigenous peoples, and their rights to those lands may be undermined during the conflict or by hostile takeovers as part of the granting of concessions to logging companies. DDR practitioners should be careful to analyse the full range of claims and rights to forest lands and promote sustainable forest management as part of reintegration efforts, including promoting the human rights of forest-dwelling peoples. Opportunities to work collaboratively with the private sector for job creation must be accompanied by commitments to promote human rights, including land rights, as part of any reintegration effort in the forestry sector. National actors should be supported to build capacity for sustainable forest management and safe and decent working conditions as part of these efforts. Interagency collaborators can also support capacity-building and technical training. TABLE 8. FORESTRY ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "e1632f91-409d-4ba3-be8c-fc8597329b76", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 36, - "Paragraph": "7.3.5 Reintegration support and energy The energy sector varies in each context, but where natural resource management and reintegration is concerned, DDR practitioners should carefully analyse critical energy resources for livelihoods and households. In many contexts, the unsustainable use of small trees for charcoal production can lead to reduced soil stability and heightened vulnerability to climate change impacts. For women and girls, the distance required to travel to gather wood for charcoal can also pose security risks, especially for sexual and gender-based violence. Alternatives that may be promoted by DDR practitioners include the development of community-managed woodlots specifically for charcoal production that are sustainably managed and located in secure areas. These efforts also help to improve resilience by increasing supply for local energy needs as well as creating a sustainable source of livelihoods. In areas where other opportunities for energy production exist, such as micro-hydro or solar infrastructure, DDR practitioners should engage technical experts to identify opportunities and to determine what kinds of interventions may be feasible and recommended as part of reintegration efforts. Collaboration with national authorities and interagency stakeholders is also recommended for these efforts. TABLE 9. ENERGY ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "d7b6e362-b528-44fa-934e-8009297a9021", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 37, - "Paragraph": "7.3.6 Reintegration support and extractives The extractive sector, which can include hydrocarbons as well as minerals, gems and precious metals, is often implicated in conflicts. The lootable nature of some of these resources, as well as the fact that they are in high demand and are highly valuable in international markets, makes them critical sources of potential financing for armed forces and groups, as well as organized criminal groups. Alternatively, these sectors have significant potential to contribute to livelihoods, employment and development if well managed. DDR practitioners shall include these sectors in their analysis and identify opportunities and potential partnerships to contribute to their formalization and management as part of reintegration efforts. Critical sources of information include entities working on improved transparency and traceability in these supply chains (including certification systems) who can provide DDR practitioners with important information on operations that may be good candidates for reintegration opportunities in the mining and extractives sector. Likewise, DDR practitioners can provide these entities with information on risks related to armed forces and groups, creating a flow of information to ensure that efforts to improve conflict-free operations and employment opportunities in the mining and extractives sector are well coordinated. Other critical actors to consider include male and female members of organized criminal groups who may already be involved in the extraction and trade of these resources. Where organized criminal groups, armed forces and groups, or even national security sector actors are implicated in the extraction and trade of these resources, DDR practitioners must ensure that they do not perpetuate this illicit capture of the extractive sector. Close collaboration with national and international stakeholders to help improve governance and enforcement of regulations in these sectors overall may be necessary before reintegration programmes can begin. DDR practitioners should look to engage with entities contributing to improving the transparency of these supply chains and to formalizing and strengthening employment opportunities. Once these sectors and actors have been identified, national actors and other technical expertise via interagency partnerships can be called upon by DDR practitioners to help support employment creation and formalization of the identified sectors. There are significant civil society resources at the international, regional and national levels that may be brought to bear here as well. In addition, DDR practitioners should seek to establish clear collaborations with private-sector entities engaged in these sectors in order to promote their adherence to national laws and international norms for the extractive sector, including around land rights, labour rights and human rights, including the free, prior and informed consent of any potentially affected communities. This might include efforts to register the miners, traders and other actors along the supply chain and to encourage purchasing from mines that are certified or that have due diligence traceability measures in place. Finally, DDR practitioners should identify any potential environmental harms that may have resulted or could result from interventions in these sectors. Where environmental harms already exist, DDR practitioners may design reintegration programmes to mitigate and repair these damages. Where development of the extractives sector could potentially contribute to future harms, DDR practitioners shall identify the appropriate mitigating measures necessary to protect both the health and labour rights of workers, as well as any potential environmental harms. TABLE 10. MINING ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": true - }, - { - "ID": "822bc224-416b-4c6b-a2fd-ccc5ec6523c6", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 39, - "Paragraph": "7.3.7 Reintegration support and water management Water management is a critical sector for livelihoods, as both households and the agricultural sector rely on water. It is also a potentially critical issue of grievance, depending on the conflict context. In areas where water resources have been a cause of conflict, DDR practitioners should include a full analysis of the various perspectives of those who claim any grievance over the water resource and seek opportunities to use water management as a means to promote social cohesion. Community-based approaches to water management can be employed to ensure that decision-making authority is distributed among key affected parties, with special attention to the inclusion of specific-needs groups and vulnerable populations who need access to water for safe consumption and their livelihoods. Water resource management can also be a powerful tool to promote cross-border, inter-regional or local cooperation. In areas where water resources cross political boundaries, this may necessitate transboundary agreements. In more local areas within political boundaries, water resource management can be addressed through locally devised options. Special attention shall be paid to any risk of contamination or diversion of water resources by upstream interventions as part of or outside of DDR programmes; to ensure this, DDR practitioners should consult technical experts to complete full analyses of the risks to any important water resource and integrate local and national actors and other interagency experts into the design of reintegration efforts as necessary. Attention should also be paid to allocation of water resources at the local level, including ensuring that access is equitable and that there are proper systems in place to ensure water quality and quantity. In addition, the current and likely future effects of climate change on water resources \u2013 underground as well as surface level and contributing rainfall patterns \u2013 should be considered when determining any interventions that may affect future water access and availability. TABLE 11. WATER MANAGEMENT ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "f9a78cb5-ac18-49fc-8d21-6ddbbb237ff7", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 40, - "Paragraph": "7.3.8 Reintegration support and waste management Waste management can be a productive sector that contributes to economic reintegration and also needs to be considered for potential risks that could contaminate other natural resources. Any opportunities to improve sanitation and upcycle water materials can be integrated into reintegration efforts; DDR practitioners should engage technical experts to support analysis for this sector to mitigate any potential risks and create employment opportunities where possible. TABLE 12. WASTE MANAGEMENT ISSUES AND REINTEGRATION MEASURES", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "89f4f9f6-4b62-4182-b4f5-7a44ee8aeefc", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8. DDR-related tools and natural resource management When the preconditions are not present to support a DDR programme, a number of DDR-related tools may be used in contexts where natural resources are present. Alternatively, DDR-related tools may also be used before, during and after DDR programmes as complementary measures (see IDDRS 2.10 on The UN Approach to DDR).", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "e6a258c0-778a-494f-ad8c-75ac9bf8e14a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.1 DDR support to mediation The parameters for DDR programmes are often set during peace negotiations, and DDR practitioners should seek to advise mediators on what type of DDR provisions are realistic and implementable (see IDDRS 2.20 on The Politics of DDR). Benefit sharing, whether of minerals, land, timber or water resources, can be a make-or-break aspect of peace negotiations. Thus, in conflicts where armed forces and groups use natural resources as a means of financing conflict or where they act as an underlying grievance for recruitment, DDR practitioners should advise mediators that, where possible, natural resources (or a future commitment to address natural resources) should also be included in peace agreements. Addressing these grievances directly in mediation processes is extremely difficult, so it is vital that sound and viable strategies for subsequent peacebuilding processes that seek to prevent the re-emergence of armed conflict related to natural resources are prioritized. It is important to carefully analyse how the conflict ended, to note if it was a military victory, a peace settlement, or otherwise, as this will have implications for how natural resources (especially land) might be distributed after the conflict ends. It is important to ensure that women\u2019s voices are also included, as they will be essential to the implementation of any peace agreement and especially to the success of DDR at the community level. Research shows that women consistently prioritize natural resources as part of peace agreements, and therefore their input should specifically be sought on this issue.", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "98b6b3e5-c9f5-4b43-b769-2c0ded9fb256", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 41, - "Paragraph": "8.2 Transitional weapons and ammunition management Transitional weapons and ammunition management is a series of interim arms control measures. When implemented as part of a DDR process, transitional WAM is primarily aimed at reducing the capacity of individuals and armed groups to engage in armed violence and conflict. Transitional WAM also aims to reduce accidents and save lives by addressing the immediate risks related to the possession of weapons, ammunition and explosives. As outlined in section 5.2, natural resources may be exploited to finance the acquisition of weapons and ammunition. These weapons and ammunition may then be used by armed forces and groups to control territory. If members of armed forces and groups refuse to disarm, for reasons of insecurity, or because they wish to maintain territorial control, DDR practitioners may, in some instances, consider supporting transitional WAM measures focused on safe and secure storage and recordkeeping. For further information, see IDDRS 4.11 on Transitional Weapons and Ammunition Management.", - "Can": false, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "6124ab31-ad71-42af-946b-79da6df66e56", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 42, - "Paragraph": "8.3 Community violence reduction Community violence reduction programmes have many different uses, including the prevention of recruitment. When natural resources are managed in a way that creates employment opportunities and supports development, they can help prevent or discourage the recruitment of individuals into armed forces and groups. Community-based initiatives and short-term employment opportunities that support good natural resource management, such as in infrastructure, disaster-risk reduction, rehabilitation of water resources, restoration of degraded ecosystems and others can provide needed livelihoods resources and discourage participation in other illicit activities or armed groups. In addition, CVR programmes can be used as stop-gap reinsertion assistance when the reintegration phase of a DDR programme is delayed. The projects implemented as part of a CVR programme are determined by local priorities and can include, but are not limited to, agriculture, labour-intensive short-term employment, and infrastructure improvement. As CVR and reintegration support may sometimes be designed as one programme, particularly in non-mission settings, DDR practitioners should be aware that the guidance on reinsertion and reintegration in this module also applies to CVR. For further information on CVR, see IDDRS 2.30 on Community Violence Reduction.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "3d3d261e-9448-466b-be48-3424fd33e5b1", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": null, - "Paragraph": "8.4 Transitional security arrangements Many comprehensive peace agreements include provisions for transitional security arrangements (see IDDRS 2.20 on The Politics of DDR). Depending on the context, these arrangements may include the deployment of national or community police, or the creation of joint units, patrols or operations involving the various parties to a conflict. Joint efforts can help to increase scrutiny of the illicit trade in natural resources. However, these efforts may be compromised in areas where organized criminal groups are present or where natural resources are being exploited by armed forces or groups. In this type of context, DDR practitioners may be better off working with mediators and other actors to help increase provisions for natural resources in peace agreements or ceasefires (see section 8.1 and IDDRS 6.40 on DDR and Organized Crime). Where transitional security arrangements exist, education and training for security units on how to secure natural resources will ensure greater transparency and oversight, which can reduce opportunities for misappropriation.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "28959e0d-5140-4205-a482-9143909eda0d", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "9. Reintegration support and natural resource management Reintegration support may be provided at all stages of conflict, even if there is no formal DDR programme or peace agreement (see IDDRS 2.40 on Reintegration as Part of Sustaining Peace and IDDRS 4.30 on Reintegration). The guidance provided in section 7.3 of this module, on reintegration as part of a DDR programme, also applies to reintegration efforts outside of DDR programmes. In contexts of ongoing armed conflict, reintegration support can focus on resilience and improving opportunities in natural resource management sectors, picking up on many of the CBNRM approaches discussed in previous sections. In particular, engagement with other efforts to improve the transparency in targeted natural resource supply chains is extremely important, as this can be a source of sustainable employment opportunities and can reduce the risk that key sectors are recaptured by armed forces and groups. Undertaking these efforts together with other measures to help the recovery of conflict-affected communities can also create opportunities for social reconciliation and cohesion.", - "Can": true, - "May": true, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "c3817f8e-9c9b-4461-8f65-7340cb16ca70", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "10. DDR, SSR and natural resource management Armed forces and groups often fuel their activities by assuming control over resource-rich territory. When States lose sovereign control over these resources, DDR and SSR processes are impeded. For example, resource revenues can prove relatively more attractive than the benefits offered through DDR and, as a result, individuals and groups may opt not to participate. Similarly, armed groups that are required by peace agreements to integrate into the national army and redeploy to a different geographical area may refuse to do so if it means losing control over resource-rich territory. Where members of the security sector have been controlling natural resource extraction and/ or trade areas or networks, this dynamic is likely to continue until the sector becomes formalized and there are appropriate systems of accountability in place to prevent illegal exploitation or trafficking of resources. Peace agreements that do not effectively address the role of natural resources risk leaving warring parties with the economic means to resume fighting as soon as they decide that peace no longer suits them. In contexts where natural resources fuel conflict, integrated DDR and SSR processes should be planned with this in mind. Where appropriate, DDR practitioners should advise mediation teams on the impact of militarized resource exploitation on DDR and SSR and recommend that provisions regarding the governance of natural resources are included in the peace agreement (if one exists). Care must also be taken not to further militarize natural resource extraction areas. The implementation of DDR in this context can be supported by SSR programmes that address the governance of natural resources. Among other elements, these programmes may focus on ensuring the transparent and accountable allocation of natural resource concessions and transparent management of the revenues derived from their exploitation. This will involve supporting assessments of what natural resources the country has and their best possible usage; assisting in the creation of laws and regulations that require transparency and accountability; and building institutional capacity to manage natural resources wisely and enforce the law effectively. For more information on the relationship between DDR and SSR, see IDDRS 6.10 on DDR and Security Sector Reform.", - "Can": true, - "May": true, - "Shall": false, - "Should": true, - "Must": true - }, - { - "ID": "55799d88-77a1-4145-b648-a0c0e6bcc64a", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 43, - "Paragraph": "Annex A: Abbreviations CBNRM\tcommunity-based natural resource management CVR\tcommunity violence reduction EITI\tExtractive Industries Transparency Initiative NGO\tnongovernmental organization SSR\tsecurity sector reform WAM\tweapons and ammunition management", - "Can": false, - "May": false, - "Shall": false, - "Should": false, - "Must": false - }, - { - "ID": "7b336ae1-c059-44f6-8a5c-105ba9e2cdb9", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 44, - "Paragraph": "Annex B: Sample questions for specific-needs analysis of natural resources in DDR Sample questions for conflict and security analysis: Who in the communities/society/Government/armed groups benefits from the natural resources that were implicated in the conflict? How do men, women, boys, girls and people with disabilities benefit specifically? Who has access to and control over natural resources? What is the role of armed groups in this? What trends and changes in natural resources are being affected by climate change, and how is access and control over natural resources impacted by climate change? Who has access to and control over land, water and non-extractive resources disaggregated by sex, age, ethnicity and/or religion? What is the role of armed groups in this? What are the implications for those who do not carry arms (e.g., security and access to control over resources)? Who are the most vulnerable people in regard to depletion of natural resources or contamination? Who are vulnerable people in terms of safety and security by virtue of the dynamics related to natural resources and what are the specific vulnerabilities of men, women and minorities? Which groups face constraints in their access to and ownership of capital assets? Sample questions for disarmament operations and transitional weapons and ammunition management: Who within the armed groups or in the communities carry arms? Do they use these to control natural resources or specific territories? What are the implications of disarmament and stockpile management sites for local communities\u2019 livelihoods and access to natural resources? Are the implications different for women and men? What are the reasons for male and female members of armed groups to hold arms and ammunition (e.g., lack of alternative livelihoods, lootability of natural resources, status)? What are the reasons for male and female community members to possess arms and ammunition (e.g., access to natural resources, protection, status)? Sample questions for demobilization (including reinsertion): How do cantonments or other demobilization sites affect local communities\u2019 access to natural resources? How are women and men affected differently? What are the infrastructure needs of local communities? What are the differences between women\u2019s and men\u2019s priorities? To act in a manner inclusive of all relevant stakeholders, whose voices should be heard in the process of planning and implementing reinsertion activities with local communities? What are the traditional roles of women and men in labour market participation? What are the differences between age groups? Do women or men have cultural roles that affect their participation (e.g., childcare roles, cultural beliefs, time poverty)? What skills and abilities are required in participants of the planned reinsertion activities? Are there groups that require special support to be able to participate in reinsertion activities? Sample questions for reintegration and community violence reduction programmes: What are the gender roles of women and men of different age groups in the community? What decisions do men and women make in the family and community? Who within the household carries out which tasks (e.g., subsistence/breadwinning, decision-making over income spending, childcare, household chores)? What are the incentives of economic opportunities for different family members, and who receives them? Which expenditures are men and women responsible for? How rigid is the gendered division of labour? What are the daily and seasonal variations in women\u2019s and men\u2019s labour supply? Who has access to and control over enabling assets for productive resources (e.g., land, finances, credit)? Who has access to and control over human capital resources (e.g., education, knowledge, time, mobility)? What are the implications for those with limited access or control? For those who risk their safety and security to access natural resources? How do constraints under which men and women of different age groups operate differ? Who are the especially vulnerable groups in terms of access to natural resources (e.g., women without male relatives, internally displaced people, female-headed households, youth, persons with disabilities)? What are the support needs of these groups (e.g., legal aid, awareness raising against stigmatization, protection)? How can barriers to the full participation of these groups be mitigated?", - "Can": true, - "May": false, - "Shall": false, - "Should": true, - "Must": false - }, - { - "ID": "745f6562-1eea-4ba6-87d4-331633ee82b4", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 45, - "Paragraph": "Annex C: Relevant frameworks and standards for natural resources in conflict settings Second report on protection of the environment in relation to armed conflicts of 2019 (A/CN.4/728) by Special Rapporteur Marja Lehto The report considers certain questions about the protection of the environment in non-international armed conflicts, with a focus on how the international rules and practices concerning natural resources may enhance the protection of the environment during and after such conflicts. It should be underlined that the two issues considered \u2013 illegal exploitation of natural resources and unintended environmental effects of human displacement \u2013 are not exclusive to non-international armed conflicts. Nor do they provide a basis for a comprehensive consideration of environmental issues relating to non-international conflicts. At the same time, they are representative of problems that have been prevalent in current non-international armed conflicts and have caused severe stress to the environment. The Sustaining Peace Approach and twin resolutions on the review of the UN Peacebuilding Architecture of 2018 (GA resolution 70/262 and SC resolution 2282 (2016)) The concept of \u2018sustaining peace\u2019 has emerged as a new and comprehensive approach to preventing the outbreak, continuation and recurrence of conflict.\u00a0It marks a clear break from the past where efforts to build peace were perceived to be mainly restricted to post-conflict contexts. The concept, framed by the twin sustaining peace resolutions and the UN Secretary-General\u2019s report on peacebuilding and sustaining peace, recognizes that a comprehensive approach is required across the peace continuum, from conflict prevention, through peacemaking, peacekeeping and longer-term development. It therefore necessitates an integrated and coherent approach among relevant political, security and developmental actors, within and outside of the United Nations system. Secretary-General\u2019s Action for Peacekeeping initiative and Declaration of Shared Commitments (2018) Through his Action for Peacekeeping initiative, the Secretary-General called on Member States, the Security Council, host countries, troop- and police-contributing countries, regional partners and financial contributors to renew their collective engagement with UN peacekeeping and mutually commit to reach for excellence. The Declaration commitments focus on a set of key priorities that build on both new commitments and existing workstreams. Implementation goals are centred on eight priority commitment areas: Politics; Women, peace and security; Protection; Safety and security; Performance and accountability; Peacebuilding and sustaining peace; Partnerships; and Conduct of peacekeepers and peacekeeping operations. 2030 Agenda for Sustainable Development and the Sustainable Development Goals The Sustainable Development Goals include elements that pertain to DDR, gender and natural resources. A comprehensive approach to achieving them requires humanitarian and development practitioners, including those working in DDR processes, to take into account each of these goals when planning and designing interventions. Report of the Secretary-General on women\u2019s participation in peacebuilding (A/65/354\u2013S/2010/466) The report calls on all peacebuilding actors to \u201censure gender-responsive economic recovery\u201d through \u201cthe promotion of women as \u2018front-line\u2019 service-delivery agents\u201d, including in the areas of \u201cagricultural extension and natural resource management\u201d. Report of the Secretary-General on disarmament, demobilization and reintegration (A/65/741) The 2011 report of the Secretary-General on DDR identifies trafficking in natural resources as a \u201ckey regional issue affecting the reintegration of ex-combatants\u201d and specifically refers to natural resource management as an emerging issue that can contribute to the sustainability of reintegration programmes if properly addressed. General Assembly resolution on observance of environmental norms in the drafting and implementation of agreements on disarmament and arms control (A/RES/65/53) This resolution underlines \u201cthe importance of the observance of environmental norms in the preparation and implementation of disarmament and arms limitation agreements\u201d and reaffirms that the international community should contribute to ensuring compliance with relevant environmental norms in negotiating treaties and agreements on disarmament and arms limitation. It further calls on \u201call States to adopt unilateral, bilateral, regional and multilateral measures so as to contribute to ensuring the application of scientific and technological progress within the framework of international security, disarmament and other related spheres, without detriment to the environment or to its effective contribution to attaining sustainable development\u201d. Report of the Secretary-General on peacebuilding in the immediate aftermath of conflict (A/64/866\u2013S/2010/386) In this report, the Secretary-General notes that \u201cgreater efforts will be needed to deliver a more effective United Nations response\u201d in the area of natural resources, and he calls on \u201cMember States and the United Nations system to make questions of natural resource allocation, ownership and access an integral part of peacebuilding strategies\u201d. United Nations Policy for Post-Conflict Employment Creation, Income Generation and Reintegration (2009) The policy notes the importance of addressing \u201croot causes of conflict such as inequitable access to land and natural resources\u201d through the use of \u201cfiscal and redistributive incentives to minimize social tensions\u201d during the reintegration process. It further suggests: Diversifying away from natural resource exports by expanding labour-intensive exports and tourism; Implementing cash-for-work projects in relevant agricultural and natural resource sectors in rural areas; Engaging traditional authorities in dispute resolution, particularly with regard to access to property and other natural resources (such as forestry, fishing and grazing land); and Implementing labour-intensive infrastructure programmes to promote sustainable agriculture, including restoration of the natural resource base, while simultaneously emphasizing social acceptance and community participation. International Labour Organization Indigenous and Tribal Peoples Convention, 1989 (No. 169) Convention No. 169 offers a unique framework for the protection of the rights of indigenous peoples as an integral aspect of inclusive and sustainable development. As the only international treaty on the subject, it contains specific provisions promoting the improvement of the standards of living of indigenous peoples from an inclusive perspective, and includes their participation from the initial stages in the planning of public policies that affect them, including labour policies. The policy stipulates that the rights of ownership and possession over the lands they traditionally occupy shall be recognized. International Labour Organization Recommendation on Employment and Decent Work for Peace and Resilience, 2017 (No. 205) This policy builds on the International Labour Organization\u2019s Employment Transition from War to Peace Recommendation, 1944 (No. 71), and features an expanded scope including internal conflicts and disasters. It broadens and updates the guidance on employment and several other elements of the Decent Work Agenda, taking into account the current global context and the complex and evolving nature of contemporary crises as well as the experience gained by the International Labour Organization and the international community in crisis response over the last decades. It also focuses on recovery and reconstruction in post-conflict and disaster situations, as well as addressing root causes of fragility and taking preventive measures for building resilience. Security Council resolution 1509 (2003) on Liberia (S/RES/1509); resolution 1565 (2004) on the Democratic Republic of the Congo (S/RES/1565); and resolution 1856 (2008) on the Democratic Republic of the Congo (S/RES/1856) These resolutions share an emphasis on the link between armed conflict and the illicit exploitation and trade of natural resources, categorically condemning the illegal exploitation of these resources and other sources of wealth: In resolution 1509, the UN Peacekeeping Mission in Liberia was called upon to assist the transitional Government in restoring the proper administration of natural resources. Resolution 1565 urges \u201call States, especially those in the region including the Democratic Republic of the Congo itself, to take appropriate steps in order to end these illegal activities, including, if necessary, through judicial means \u2026 and exhorts the international financial institutions to assist the Government of National Unity and Transition in establishing efficient and transparent control of the exploitation of natural resources\u201d. Resolution 1856 recognized the link between the illegal exploitation of natural resources, the illicit trade in such resources and the proliferation and trafficking of arms as one of the major factors fuelling and exacerbating conflicts in the Great Lakes region of Africa, and in particular in the Democratic Republic of the Congo\u201d. It directed that the UN Peacekeeping Mission work in close cooperation with the Government in order to, among other things, execute the \u201cdisarmament, demobilization, monitoring of resources of foreign and Congolese armed groups\u201d, and, more specifically, \u201cuse its monitoring and inspection capacities to curtail the provision of support to illegal armed groups derived from illicit trade in natural resources\u201d. Secretary-General\u2019s progress report on the prevention of armed conflict (A/60/891) The Secretary-General\u2019s progress report notes, \u201cThe most effective way to prevent crisis is to reduce the impact of risk factors. \u2026 These include, for instance, international efforts to regulate trade in resources that fuel conflict, such as diamonds \u2026 efforts to combat narcotics cultivation, trafficking and addiction \u2026 and steps to reduce environmental degradation, with its associated economic and political fallout. Many of these endeavours include international regulatory frameworks and the building of national capacities\u201d. In addition, he emphasizes more specifically that \u201cenvironmental degradation has the potential to destabilize already conflict-prone regions, especially when compounded by inequitable access or politicization of access to scarce resources\u201d, and urges \u201cMember States to renew their efforts to agree on ways that allow all of us to live sustainably within the planet\u2019s means\u201d. He encourages, among other things, implementing programmes that \u201ccan also have a positive impact locally by promoting dialogue around shared resources and enabling opposing groups to focus on common problems.\u201d United Nations Development Group \u2013 Executive Committee on Humanitarian Affairs Guidance Note on Natural Resource Management in Transition Settings (January 2013) This note provides guidance on policy anchors for natural resource management in transition settings, key guiding questions for extractive industries, renewable resources and land to help understand their existing and potential contribution to conflict and peacebuilding and describes entry points where these issues should be considered within existing UN processes and tools. It includes annexes that highlight tools, resources and sources of best practice and other guidance for addressing natural resource management challenges in transition settings.", - "Can": true, - "May": true, - "Shall": true, - "Should": true, - "Must": false - }, - { - "ID": "b29f2ccd-f323-49be-a88c-b21d6acfe698", - "Color": "#CF7AB2", - "Level": "6", - "LevelName": "", - "Title": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "Heading1": "", - "Heading2": "", - "Heading3": "", - "Heading4": "", - "Module": "IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021", - "PageNum": 49, - "Paragraph": "Examples of relevant certification schemes, standards, guidelines and principles Extractive Industries Transparency Initiative (EITI) The EITI is a coalition of Governments, companies, civil society groups, investors and international organizations that has developed an international standard for transparent reporting on revenues from natural resources. With the EITI, companies publish what they pay and Governments publish what they receive so as to encourage transparency and accountability on both sides. The process is overseen by a multi-stakeholder group of Governments, civil society organizations and companies that provides a forum for dialogue and a platform for broader reforms along the natural resources value chain. Food and Agriculture Organization of the United Nations Voluntary Guidelines on Tenure The purpose of these guidelines is to serve as a reference and provide guidance to improve the governance of tenure of land, fisheries and forests with the overarching goal of achieving food security for all. The guidelines focus on the linkages between tenure of land, fisheries and forests and poverty eradication, food security and sustainable livelihoods, with an emphasis on vulnerable and marginalized people. They mention specific actions that can be taken to improve tenure for land, fisheries and forests, especially for women, children, youth and indigenous peoples, as well as for the resolution of disputes, conflicts over tenure, and cooperation on transboundary matters. Pinheiro Principles on Housing and Property Restitution for Refugees and Displaced Persons These principles were endorsed by the United Nations Sub-Commission on the Promotion and Protection of Human Rights on 11 August 2005 and are firmly established on the basis of international humanitarian and human rights law. They provide restitution practitioners, States and UN agencies with specific policy guidance relating to the legal, policy, procedural, institutional and technical implementation mechanisms for housing and property restitution following conflicts, disasters or complex emergencies. While the principles are focused on housing, land and property rights, they also apply to commercial properties, including agricultural and pastoral land. They advocate for the inclusion of housing, land and property rights issues as part of comprehensive peace agreements as well as part of humanitarian appeals and budgets. Natural Resource Charter The charter is a set of principles for Governments and societies on how to best harness the opportunities created by extractive resources for development. It outlines tools and policy options designed to avoid the mismanagement of diminishing natural riches and ensure their ongoing benefits. The charter is organized around 12 core precepts offering guidance on key decisions Governments face, beginning with whether to extract resources and ending with how generated revenue can produce maximum good for citizens. It is not a recipe or blueprint for the policies and institutions countries must build, but rather a set of principles to guide decision-making processes. First launched in 2010 at the annual meetings of the International Monetary Fund and the World Bank, the charter was written by an independent group of practitioners and academics under the governance of an oversight board composed of distinguished international figures with first-hand experience of the challenges faced by resource-rich countries. OECD Due Diligence Guidance for Responsible Supply Chains of Minerals from Conflict-Affected and High-Risk Areas This guidance provides detailed recommendations to help companies respect human rights and avoid contributing to conflict through their mineral purchasing decisions and practices. It is for use by any company potentially sourcing minerals or metals from conflict-affected and high-risk areas. The guidance is global in scope and applies to all mineral supply chains. Section 1502 of the Dodd-Frank Act The \u2018conflict minerals\u2019 provision \u2013 commonly known as\u00a0Section 1502 of the Dodd-Frank Act \u2013 requires U.S. publicly listed companies to check whether their supply chains for tin, tungsten, tantalum and gold might originate in Congo or its neighbours, take steps to address any risks they find, and report on their efforts every year to the U.S. Securities and Exchange Commission). Companies are not encouraged to stop sourcing from this region but are required to show they are working with the appropriate care \u2013 or \u201cdue diligence\u201d \u2013 to make sure they are not funding armed groups or human rights abuses. Kimberley Process The Kimberley Process Certification Scheme imposes extensive requirements on its members to enable them to certify shipments of rough diamonds as \u2018conflict-free\u2019 and prevent conflict diamonds from entering the legitimate trade. Under the terms of the Kimberley Process, participating States must meet \u2018minimum requirements\u2019 and must put in place national legislation and institutions; adopt export, import and internal controls; and commit to transparency and the exchange of statistical data. Participants can only legally trade with other participants who have also met the minimum requirements of the scheme, and international shipments of rough diamonds must be accompanied by a Kimberley Process certificate guaranteeing that they are conflict free. UN Guiding Principles on Business and Human Rights This is a set of guidelines for States and companies to prevent, address and remedy human rights abuses committed in business operations. The principles are organized under three main tenets: protect, respect and remedy. Companies worldwide are expected to comply with these norms, which underpin existing movements to create due diligence legislation for company supply chain operations. Land Governance Assessment Framework Development practitioners of all persuasions recognize that a well-functioning land sector can boost a country\u2019s economic growth, foster social development, shield the rights of vulnerable groups, and help with environmental protection. The World Bank\u2019s Land Governance Assessment Framework is a diagnostic instrument to assess the state of land governance at the national or subnational level. Local experts rate the quality of a country\u2019s land governance along a comprehensive set of dimensions. These ratings and an accompanying report serve as the basis for policy dialogue at the national or subnational level.", - "Can": true, - "May": false, - "Shall": false, - "Should": false, - "Must": true - } -] \ No newline at end of file diff --git a/static/data/json_log.log b/static/data/json_log.log deleted file mode 100644 index b33f5c6..0000000 --- a/static/data/json_log.log +++ /dev/null @@ -1,39716 +0,0 @@ -2023-11-09 16:47:28 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:31 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:33 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:35 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:38 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:39 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:42 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:44 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:44 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:47 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:50 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:52 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:54 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:57 - ERROR - Number of successed saved files: 0 -2023-11-09 16:47:58 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:11 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:14 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:16 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:20 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:24 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:26 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:28 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:31 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:38 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:40 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:49 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:53 - ERROR - Number of successed saved files: 0 -2023-11-09 16:48:57 - ERROR - Number of successed saved files: 0 -2023-11-09 16:49:01 - ERROR - Number of successed saved files: 0 -2023-11-09 16:49:08 - ERROR - Number of successed saved files: 0 -2023-11-09 16:49:08 - INFO - Number of successed saved files: 0 -2023-11-09 16:49:08 - INFO - Number of seactions: 1388 -2023-11-09 16:49:08 - INFO - Number of seactions after cleaning: 1257 -2023-11-09 16:49:08 - INFO - Number of cleaned seactions: 0 -2023-11-09 17:04:24 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. -2023-11-09 17:04:52 - ERROR - Internal Server Error: /data_api/process-files/ -Traceback (most recent call last): - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view - return view_func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view - return view_func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view - return self.dispatch(request, *args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch - response = self.handle_exception(exc) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception - self.raise_uncaught_exception(exc) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception - raise exc - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch - response = handler(request, *args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler - return func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 128, in processFiles - process_files.process_standards() - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py", line 198, in process_standards - with open(json_path, 'W') as json_file: -ValueError: invalid mode: 'W' -2023-11-09 17:05:14 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. -2023-11-09 17:05:23 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.json -2023-11-09 17:05:26 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.30-Community-Violence-Reduction.json -2023-11-09 17:05:28 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.20-The-Politics-of-DDR.json -2023-11-09 17:05:30 - INFO - 19 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json -2023-11-09 17:05:34 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json -2023-11-09 17:05:35 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json -2023-11-09 17:05:37 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.42-Personnel-and-Staffing.json -2023-11-09 17:05:39 - INFO - 40 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.41-Finance-and-Budgeting.json -2023-11-09 17:05:40 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json -2023-11-09 17:05:42 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json -2023-11-09 17:05:45 - INFO - 48 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.20-DDR-Programme-Design.json -2023-11-09 17:05:47 - INFO - 53 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json -2023-11-09 17:05:49 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json -2023-11-09 17:05:52 - INFO - 36 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json -2023-11-09 17:05:53 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.json -2023-11-09 17:06:06 - INFO - 88 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.30-Reintegration.json -2023-11-09 17:06:09 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.20-Demobilization.json -2023-11-09 17:06:11 - INFO - 28 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json -2023-11-09 17:06:15 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.10-Disarmament.json -2023-11-09 17:06:19 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json -2023-11-09 17:06:20 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.70-Health-and-DDR.json -2023-11-09 17:06:22 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json -2023-11-09 17:06:25 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json -2023-11-09 17:06:32 - INFO - 85 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json -2023-11-09 17:06:34 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.30-Youth-and-DDR.json -2023-11-09 17:06:43 - INFO - 75 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.20-Children-and-DDR.json -2023-11-09 17:06:46 - INFO - 50 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json -2023-11-09 17:06:50 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json -2023-11-09 17:06:54 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json -2023-11-09 17:07:00 - INFO - 71 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.10-DDR-and-SSR.json -2023-11-09 17:07:00 - INFO - Number of successed saved files: 30 -2023-11-09 17:07:00 - INFO - Number of seactions: 1388 -2023-11-09 17:07:00 - INFO - Number of seactions after cleaning: 1257 -2023-11-09 17:07:00 - INFO - Number of cleaned seactions: 0 -2023-11-10 11:17:40 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.json -2023-11-10 11:17:42 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.30-Community-Violence-Reduction.json -2023-11-10 11:17:45 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.20-The-Politics-of-DDR.json -2023-11-10 11:17:47 - INFO - 19 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json -2023-11-10 11:17:50 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json -2023-11-10 11:17:51 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json -2023-11-10 11:17:54 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.42-Personnel-and-Staffing.json -2023-11-10 11:17:55 - INFO - 40 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.41-Finance-and-Budgeting.json -2023-11-10 11:17:56 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json -2023-11-10 11:17:58 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json -2023-11-10 11:18:01 - INFO - 48 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.20-DDR-Programme-Design.json -2023-11-10 11:18:04 - INFO - 53 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json -2023-11-10 11:18:05 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json -2023-11-10 11:18:08 - INFO - 36 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json -2023-11-10 11:18:10 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.json -2023-11-10 11:18:22 - INFO - 88 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.30-Reintegration.json -2023-11-10 11:18:25 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.20-Demobilization.json -2023-11-10 11:18:27 - INFO - 28 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json -2023-11-10 11:18:31 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.10-Disarmament.json -2023-11-10 11:18:34 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json -2023-11-10 11:18:36 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.70-Health-and-DDR.json -2023-11-10 11:18:38 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json -2023-11-10 11:18:41 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json -2023-11-10 11:18:48 - INFO - 85 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json -2023-11-10 11:18:50 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.30-Youth-and-DDR.json -2023-11-10 11:18:58 - INFO - 75 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.20-Children-and-DDR.json -2023-11-10 11:19:01 - INFO - 50 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json -2023-11-10 11:19:05 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json -2023-11-10 11:19:08 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json -2023-11-10 11:19:15 - INFO - 71 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.10-DDR-and-SSR.json -2023-11-10 11:19:15 - INFO - Number of successed saved files: 30 -2023-11-10 11:19:15 - INFO - Number of seactions: 1388 -2023-11-10 11:19:15 - INFO - Number of seactions after cleaning: 1257 -2023-11-10 11:19:15 - INFO - Number of cleaned seactions: 0 -2023-11-10 11:19:15 - ERROR - Internal Server Error: /data_api/process-files/ -Traceback (most recent call last): - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view - return view_func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view - return view_func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/generic/base.py", line 103, in view - return self.dispatch(request, *args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch - response = self.handle_exception(exc) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception - self.raise_uncaught_exception(exc) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception - raise exc - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch - response = handler(request, *args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/rest_framework/decorators.py", line 50, in handler - return func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py", line 128, in processFiles - process_files.process_standards() - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py", line 224, in process_standards - craetIndex.create_index() -AttributeError: 'CreateIndexES' object has no attribute 'create_index' -2023-11-10 11:25:45 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. -2023-11-10 12:22:55 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.json -2023-11-10 12:22:57 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.30-Community-Violence-Reduction.json -2023-11-10 12:23:00 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.20-The-Politics-of-DDR.json -2023-11-10 12:23:02 - INFO - 19 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json -2023-11-10 12:23:05 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json -2023-11-10 12:23:06 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json -2023-11-10 12:23:09 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.42-Personnel-and-Staffing.json -2023-11-10 12:23:11 - INFO - 40 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.41-Finance-and-Budgeting.json -2023-11-10 12:23:11 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json -2023-11-10 12:23:14 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json -2023-11-10 12:23:16 - INFO - 48 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.20-DDR-Programme-Design.json -2023-11-10 12:23:19 - INFO - 53 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json -2023-11-10 12:23:21 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json -2023-11-10 12:23:23 - INFO - 36 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json -2023-11-10 12:23:25 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.json -2023-11-10 12:23:37 - INFO - 88 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.30-Reintegration.json -2023-11-10 12:23:40 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.20-Demobilization.json -2023-11-10 12:23:42 - INFO - 28 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json -2023-11-10 12:23:46 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.10-Disarmament.json -2023-11-10 12:23:50 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json -2023-11-10 12:23:51 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.70-Health-and-DDR.json -2023-11-10 12:23:53 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json -2023-11-10 12:23:56 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json -2023-11-10 12:24:03 - INFO - 85 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json -2023-11-10 12:24:05 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.30-Youth-and-DDR.json -2023-11-10 12:24:13 - INFO - 75 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.20-Children-and-DDR.json -2023-11-10 12:24:17 - INFO - 50 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json -2023-11-10 12:24:20 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json -2023-11-10 12:24:24 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json -2023-11-10 12:24:30 - INFO - 71 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.10-DDR-and-SSR.json -2023-11-10 12:24:30 - INFO - Number of successed saved files: 30 -2023-11-10 12:24:30 - INFO - Number of seactions: 1388 -2023-11-10 12:24:30 - INFO - Number of seactions after cleaning: 1257 -2023-11-10 12:24:30 - INFO - Number of cleaned seactions: 0 -2023-11-10 12:24:30 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-10 12:24:31 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.074s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-10 12:24:31 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.004s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-10 12:24:31 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.079s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.325s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3849 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.136s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7498 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.024s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6042 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3325 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4428 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.024s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3879 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.016s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8637 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7356 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6075 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3513 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7539 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5160 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:24:31 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 13761 -2023-11-10 12:24:31 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.029s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 13029 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6624 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8820 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 16140 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.032s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9369 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.023s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9003 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.025s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6441 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9735 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6075 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9186 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.024s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4428 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.016s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 15655 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.029s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6292 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.023s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6476 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 92036 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.124s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 92036 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.124s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 47324 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.066s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9420 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9052 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:24:32 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4452 -2023-11-10 12:24:32 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:24:32 - INFO - File Processing completed -2023-11-10 12:26:08 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. -2023-11-10 12:26:25 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.40-Reintegration-as-Part-of-Sustaining-Peace.json -2023-11-10 12:26:28 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.30-Community-Violence-Reduction.json -2023-11-10 12:26:30 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.20-The-Politics-of-DDR.json -2023-11-10 12:26:32 - INFO - 19 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.11-The-Legal-Framework-For-UNDDR.json -2023-11-10 12:26:35 - INFO - 35 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-2.10-The-UN-Approach-To-DDR.json -2023-11-10 12:26:37 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.50-Monitoring-and-Evaluation-of-DDR-Programmes.json -2023-11-10 12:26:39 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.42-Personnel-and-Staffing.json -2023-11-10 12:26:41 - INFO - 40 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.41-Finance-and-Budgeting.json -2023-11-10 12:26:42 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.40-Mission-and-Programme-Support-for-DDR.json -2023-11-10 12:26:44 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.30-National-Institutions-for-DDR.json -2023-11-10 12:26:47 - INFO - 48 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.20-DDR-Programme-Design.json -2023-11-10 12:26:49 - INFO - 53 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-3.10-Integrated-DDR-Planning-Processes-and-Structures.json -2023-11-10 12:26:51 - INFO - 21 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.60-Public-Information-and-Strategic-Communication-in-Support-of-DDR.json -2023-11-10 12:26:53 - INFO - 36 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.50-Police-Roles-and-Responsibilities.json -2023-11-10 12:26:55 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.40-UN-Military-Roles-and-Responsibilities.json -2023-11-10 12:27:08 - INFO - 88 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.30-Reintegration.json -2023-11-10 12:27:11 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.20-Demobilization.json -2023-11-10 12:27:12 - INFO - 28 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.11-Transitional-Weapons-and-Ammunition-Management.json -2023-11-10 12:27:16 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-4.10-Disarmament.json -2023-11-10 12:27:20 - INFO - 51 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.80-Disability-Inclusive-DDR.json -2023-11-10 12:27:22 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.70-Health-and-DDR.json -2023-11-10 12:27:24 - INFO - 33 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.60-HIV-AIDS-and-DDR.json -2023-11-10 12:27:27 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.50-Food-Asssistance-in-DDR.json -2023-11-10 12:27:34 - INFO - 85 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.40-Cross-border-Population-Movements.json -2023-11-10 12:27:36 - INFO - 24 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.30-Youth-and-DDR.json -2023-11-10 12:27:44 - INFO - 75 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.20-Children-and-DDR.json -2023-11-10 12:27:48 - INFO - 50 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-5.10-Women-Gender-and-DDR.json -2023-11-10 12:27:51 - INFO - 41 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.40-DDR-and-Organized-Crime.json -2023-11-10 12:27:55 - INFO - 49 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.20-DDR-and-Transitional-Justice.json -2023-11-10 12:28:01 - INFO - 71 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS-6.10-DDR-and-SSR.json -2023-11-10 12:28:01 - INFO - Number of successed saved files: 30 -2023-11-10 12:28:01 - INFO - Number of seactions: 1388 -2023-11-10 12:28:01 - INFO - Number of seactions after cleaning: 1257 -2023-11-10 12:28:01 - INFO - Number of cleaned seactions: 0 -2023-11-10 12:28:01 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-10 12:28:01 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-10 12:28:01 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.013s] -2023-11-10 12:28:01 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-10 12:28:01 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] -2023-11-10 12:28:01 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-10 12:28:01 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.077s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.326s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3849 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.162s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7498 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.028s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6042 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.015s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3325 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4428 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3879 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.015s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8637 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7356 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6075 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3513 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7539 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5160 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 13761 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.027s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 13029 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6624 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8820 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 16140 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.030s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9369 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9003 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.024s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6441 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9735 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.024s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6075 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.017s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9186 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4428 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.015s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 15655 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.025s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6292 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.020s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6476 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.019s] -2023-11-10 12:28:02 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9420 -2023-11-10 12:28:02 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:28:03 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 9052 -2023-11-10 12:28:03 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.022s] -2023-11-10 12:28:03 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 4452 -2023-11-10 12:28:03 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.018s] -2023-11-10 12:28:03 - INFO - File Processing completed -2023-11-10 12:55:57 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-10 12:55:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-10 12:55:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.179s] -2023-11-20 11:00:22 - INFO - Number of successed saved files: 0 -2023-11-20 11:00:22 - INFO - Number of seactions: 0 -2023-11-20 11:00:22 - INFO - Number of seactions after cleaning: 0 -2023-11-20 11:00:22 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:00:22 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:00:23 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:00:23 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.193s] -2023-11-20 11:00:23 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:00:23 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.007s] -2023-11-20 11:00:23 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:00:23 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.109s] -2023-11-20 11:00:24 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:00:24 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.341s] -2023-11-20 11:00:24 - INFO - File Processing completed -2023-11-20 11:01:05 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.035s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.013s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.011s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.014s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.015s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:20 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:20 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:21 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:21 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:22 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:22 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:23 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:23 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:24 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:24 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:25 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:25 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:26 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:26 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:27 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:27 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:28 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:28 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:29 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:29 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.010s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:30 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:30 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:31 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:31 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:32 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:32 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:33 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:33 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:34 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:34 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:35 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:35 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:36 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:36 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:37 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:37 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:38 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:38 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:39 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:39 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:40 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:40 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:41 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:41 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:42 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:42 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:43 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:43 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:44 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:44 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:45 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:45 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:46 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:46 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:47 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:47 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:48 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:48 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:49 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:49 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:50 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:50 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:51 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:51 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:52 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:52 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:53 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:53 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.085s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:54 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:54 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:55 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:55 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:56 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:56 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:57 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:57 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:01:59 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:01:59 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.083s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.017s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.015s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:00 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:00 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:01 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:01 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:02 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:02 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:03 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:03 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:06 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:06 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:07 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:07 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:08 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:08 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:09 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:09 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:10 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:10 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:02:12 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:12 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:12 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:13 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:13 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - INFO - Starting file Processing ... -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:14 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:14 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.024s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.062s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.036s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.009s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.012s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:15 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:15 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.029s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.011s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.017s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.017s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.016s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.017s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.015s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:16 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:16 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:17 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:17 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.139s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.015s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:18 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:18 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 11:02:19 - INFO - Number of successed saved files: 1 -2023-11-20 11:02:19 - INFO - Number of seactions: 1 -2023-11-20 11:02:19 - INFO - Number of seactions after cleaning: 1 -2023-11-20 11:02:19 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.001s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.002s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:02:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.036s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:02:19 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.003s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:02:19 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.085s] -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 503 470 -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:503 duration:0.050s] -2023-11-20 11:02:19 - WARNING - Node has failed for 1 times in a row, putting on 1 second timeout -2023-11-20 11:02:19 - WARNING - Retrying request after non-successful status 503 (attempt 0 of 3) -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 404 359 -2023-11-20 11:02:19 - INFO - POST https://localhost:9200/iddrs/_search [status:404 duration:0.005s] -2023-11-20 11:02:19 - WARNING - Node has been marked alive after a successful request -2023-11-20 11:02:19 - ERROR - Internal Server Error: /client_api/get_input/ -Traceback (most recent call last): - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view - return view_func(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/search_tfidf/views.py", line 50, in get_input - searchResults = eSearch(phrase) - File "/home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/search_tfidf/elasticSearch.py", line 54, in eSearch - search_results = es.search(index="iddrs", body=search_query) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/elasticsearch/_sync/client/utils.py", line 414, in wrapped - return api(*args, **kwargs) - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/elasticsearch/_sync/client/__init__.py", line 3924, in search - return self.perform_request( # type: ignore[return-value] - File "/home/louai/Documents/BICC/IDDRS/iddrsEnv/lib/python3.10/site-packages/elasticsearch/_sync/client/_base.py", line 320, in perform_request - raise HTTP_EXCEPTIONS.get(meta.status, ApiError)( -elasticsearch.NotFoundError: NotFoundError(404, 'index_not_found_exception', 'no such index [iddrs]', iddrs, index_or_alias) -2023-11-20 11:02:19 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:02:19 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.346s] -2023-11-20 11:02:20 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 218 -2023-11-20 11:02:20 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.267s] -2023-11-20 11:02:20 - INFO - File Processing completed -2023-11-20 11:02:40 - INFO - Starting file Processing ... -2023-11-20 11:02:42 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 11:02:42 - INFO - Number of successed saved files: 1 -2023-11-20 11:02:42 - INFO - Number of seactions: 1 -2023-11-20 11:02:42 - INFO - Number of seactions after cleaning: 1 -2023-11-20 11:02:42 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:02:42 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:02:42 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:02:42 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.028s] -2023-11-20 11:02:42 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:02:42 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] -2023-11-20 11:02:42 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:02:42 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.065s] -2023-11-20 11:02:42 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:02:42 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.305s] -2023-11-20 11:02:42 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 217 -2023-11-20 11:02:42 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.093s] -2023-11-20 11:02:42 - INFO - File Processing completed -2023-11-20 11:03:05 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.034s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.006s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:03:05 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:03:05 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.030s] -2023-11-20 11:11:05 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/PreprocessFile.py changed, reloading. -2023-11-20 11:11:54 - INFO - 9 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 11:11:54 - INFO - Number of successed saved files: 1 -2023-11-20 11:11:54 - INFO - Number of seactions: 46 -2023-11-20 11:11:54 - INFO - Number of seactions after cleaning: 9 -2023-11-20 11:11:54 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:11:54 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:11:54 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:11:54 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.038s] -2023-11-20 11:11:54 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:11:54 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.003s] -2023-11-20 11:11:55 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:11:55 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.074s] -2023-11-20 11:11:55 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:11:55 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.316s] -2023-11-20 11:11:55 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 1666 -2023-11-20 11:11:55 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.178s] -2023-11-20 11:11:55 - INFO - File Processing completed -2023-11-20 11:17:24 - INFO - Starting file Processing ... -2023-11-20 11:17:27 - INFO - 9 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 11:17:27 - INFO - Number of successed saved files: 1 -2023-11-20 11:17:27 - INFO - Number of seactions: 46 -2023-11-20 11:17:27 - INFO - Number of seactions after cleaning: 9 -2023-11-20 11:17:27 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:17:27 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:17:27 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:17:27 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.029s] -2023-11-20 11:17:27 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:17:27 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] -2023-11-20 11:17:27 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:17:27 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.067s] -2023-11-20 11:17:27 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:17:27 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.332s] -2023-11-20 11:17:28 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 1666 -2023-11-20 11:17:28 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.162s] -2023-11-20 11:17:28 - INFO - File Processing completed -2023-11-20 11:18:02 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 11:18:19 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 11:18:22 - INFO - Starting file Processing ... -2023-11-20 11:18:26 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 11:18:26 - INFO - Number of successed saved files: 1 -2023-11-20 11:18:26 - INFO - Number of seactions: 69 -2023-11-20 11:18:26 - INFO - Number of seactions after cleaning: 30 -2023-11-20 11:18:26 - INFO - Number of cleaned seactions: 0 -2023-11-20 11:18:26 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:18:26 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:18:26 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.021s] -2023-11-20 11:18:26 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 11:18:26 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.003s] -2023-11-20 11:18:26 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 11:18:26 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.068s] -2023-11-20 11:18:27 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 11:18:27 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.353s] -2023-11-20 11:18:27 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 11:18:27 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.204s] -2023-11-20 11:18:27 - INFO - File Processing completed -2023-11-20 11:19:04 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:19:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.028s] -2023-11-20 11:19:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:19:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:19:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:19:04 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:04 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:19:11 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 11:19:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.023s] -2023-11-20 11:19:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:19:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.005s] -2023-11-20 11:19:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.004s] -2023-11-20 11:19:11 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-20 11:19:11 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-20 11:58:19 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:07:03 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:07:38 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:35:04 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:37:29 - WARNING - Not Found: /data_api/fileevents/ -2023-11-20 12:44:54 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py changed, reloading. -2023-11-20 12:46:14 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 12:46:14 - INFO - Number of successed saved files: 1 -2023-11-20 12:46:14 - INFO - Number of seactions: 69 -2023-11-20 12:46:14 - INFO - Number of seactions after cleaning: 30 -2023-11-20 12:46:14 - INFO - Number of cleaned seactions: 0 -2023-11-20 12:46:14 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 12:46:14 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:46:14 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.112s] -2023-11-20 12:46:14 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:46:14 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] -2023-11-20 12:46:14 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 12:46:14 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.073s] -2023-11-20 12:46:14 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 12:46:14 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.298s] -2023-11-20 12:46:14 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 12:46:14 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.153s] -2023-11-20 12:46:14 - INFO - File Processing completed -2023-11-20 12:46:28 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:47:20 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:47:26 - INFO - Starting file Processing ... -2023-11-20 12:47:29 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 12:47:30 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:47:34 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-20 12:47:34 - INFO - Number of successed saved files: 2 -2023-11-20 12:47:34 - INFO - Number of seactions: 119 -2023-11-20 12:47:34 - INFO - Number of seactions after cleaning: 60 -2023-11-20 12:47:34 - INFO - Number of cleaned seactions: 0 -2023-11-20 12:47:34 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:47:34 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.019s] -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:47:34 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 12:47:34 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.065s] -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 12:47:34 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.304s] -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 12:47:34 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.144s] -2023-11-20 12:47:34 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5496 -2023-11-20 12:47:34 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.033s] -2023-11-20 12:47:34 - INFO - File Processing completed -2023-11-20 12:47:45 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:47:54 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:47:56 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:48:04 - INFO - Starting file Processing ... -2023-11-20 12:48:04 - INFO - Number of successed saved files: 0 -2023-11-20 12:48:04 - INFO - Number of seactions: 0 -2023-11-20 12:48:04 - INFO - Number of seactions after cleaning: 0 -2023-11-20 12:48:04 - INFO - Number of cleaned seactions: 0 -2023-11-20 12:48:04 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 12:48:04 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:48:04 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.017s] -2023-11-20 12:48:04 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:48:04 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 12:48:04 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 12:48:04 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.078s] -2023-11-20 12:48:05 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 12:48:05 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.348s] -2023-11-20 12:48:05 - INFO - File Processing completed -2023-11-20 12:48:23 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:49:57 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:50:09 - INFO - Starting file Processing ... -2023-11-20 12:50:13 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-20 12:50:13 - INFO - Number of successed saved files: 1 -2023-11-20 12:50:13 - INFO - Number of seactions: 69 -2023-11-20 12:50:13 - INFO - Number of seactions after cleaning: 30 -2023-11-20 12:50:13 - INFO - Number of cleaned seactions: 0 -2023-11-20 12:50:13 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 12:50:13 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:50:13 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.020s] -2023-11-20 12:50:13 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:50:13 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 12:50:13 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 12:50:13 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.061s] -2023-11-20 12:50:13 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 12:50:13 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.301s] -2023-11-20 12:50:14 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 12:50:14 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.140s] -2023-11-20 12:50:14 - INFO - File Processing completed -2023-11-20 12:51:28 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 12:51:30 - INFO - Starting file Processing ... -2023-11-20 12:51:30 - INFO - Number of successed saved files: 0 -2023-11-20 12:51:30 - INFO - Number of seactions: 0 -2023-11-20 12:51:30 - INFO - Number of seactions after cleaning: 0 -2023-11-20 12:51:30 - INFO - Number of cleaned seactions: 0 -2023-11-20 12:51:30 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 12:51:30 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:51:30 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.022s] -2023-11-20 12:51:30 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 12:51:30 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 12:51:30 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 12:51:30 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.064s] -2023-11-20 12:51:31 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 12:51:31 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.317s] -2023-11-20 12:51:31 - INFO - File Processing completed -2023-11-20 12:58:38 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/models.py changed, reloading. -2023-11-20 13:20:22 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-20 13:20:22 - INFO - Number of successed saved files: 1 -2023-11-20 13:20:22 - INFO - Number of seactions: 50 -2023-11-20 13:20:22 - INFO - Number of seactions after cleaning: 30 -2023-11-20 13:20:22 - INFO - Number of cleaned seactions: 0 -2023-11-20 13:20:22 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 13:20:22 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:20:22 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.073s] -2023-11-20 13:20:22 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:20:22 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 13:20:22 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 13:20:22 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.081s] -2023-11-20 13:20:22 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 13:20:22 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.301s] -2023-11-20 13:20:22 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 13:20:22 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.145s] -2023-11-20 13:20:22 - INFO - File Processing completed -2023-11-20 13:35:59 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-20 13:35:59 - INFO - Number of successed saved files: 1 -2023-11-20 13:35:59 - INFO - Number of seactions: 50 -2023-11-20 13:35:59 - INFO - Number of seactions after cleaning: 30 -2023-11-20 13:35:59 - INFO - Number of cleaned seactions: 0 -2023-11-20 13:35:59 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 13:35:59 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:35:59 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.016s] -2023-11-20 13:35:59 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:35:59 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 13:35:59 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 13:35:59 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.069s] -2023-11-20 13:35:59 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 13:35:59 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.320s] -2023-11-20 13:36:00 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 13:36:00 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.138s] -2023-11-20 13:36:00 - INFO - File Processing completed -2023-11-20 13:36:07 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 13:36:10 - INFO - Starting file Processing ... -2023-11-20 13:36:10 - INFO - Number of successed saved files: 0 -2023-11-20 13:36:10 - INFO - Number of seactions: 0 -2023-11-20 13:36:10 - INFO - Number of seactions after cleaning: 0 -2023-11-20 13:36:10 - INFO - Number of cleaned seactions: 0 -2023-11-20 13:36:10 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 13:36:10 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:36:10 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.012s] -2023-11-20 13:36:10 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:36:10 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 13:36:10 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 13:36:10 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.065s] -2023-11-20 13:36:10 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 13:36:10 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.296s] -2023-11-20 13:36:10 - INFO - File Processing completed -2023-11-20 13:38:39 - INFO - /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/data_api/views.py changed, reloading. -2023-11-20 13:43:11 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-20 13:43:13 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-20 13:43:13 - INFO - Number of successed saved files: 2 -2023-11-20 13:43:13 - INFO - Number of seactions: 94 -2023-11-20 13:43:13 - INFO - Number of seactions after cleaning: 48 -2023-11-20 13:43:13 - INFO - Number of cleaned seactions: 0 -2023-11-20 13:43:13 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 13:43:13 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:43:13 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.085s] -2023-11-20 13:43:13 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:43:13 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.002s] -2023-11-20 13:43:14 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 13:43:14 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.066s] -2023-11-20 13:43:14 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 13:43:14 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.312s] -2023-11-20 13:43:14 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5487 -2023-11-20 13:43:14 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.141s] -2023-11-20 13:43:14 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3312 -2023-11-20 13:43:14 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.021s] -2023-11-20 13:43:14 - INFO - File Processing completed -2023-11-20 13:43:21 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 13:43:28 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 13:43:40 - WARNING - Not Found: /data_api/api/token/refresh/ -2023-11-20 13:43:45 - INFO - Starting file Processing ... -2023-11-20 13:43:46 - INFO - Number of successed saved files: 0 -2023-11-20 13:43:46 - INFO - Number of seactions: 0 -2023-11-20 13:43:46 - INFO - Number of seactions after cleaning: 0 -2023-11-20 13:43:46 - INFO - Number of cleaned seactions: 0 -2023-11-20 13:43:46 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-20 13:43:46 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:43:46 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.014s] -2023-11-20 13:43:46 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-20 13:43:46 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.001s] -2023-11-20 13:43:46 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-20 13:43:46 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.054s] -2023-11-20 13:43:46 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-20 13:43:46 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.273s] -2023-11-20 13:43:46 - INFO - File Processing completed -2023-11-21 08:05:36 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.10_The UN Approach to DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-21 08:05:38 - INFO - 18 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.11 The Legal Framework for UN DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-21 08:05:40 - INFO - 40 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.20 The Politics of DDR_validated copy-edit clean_19 Nov 2019.json -2023-11-21 08:05:42 - INFO - 30 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 2.30 Community Violence Reduction_validated copy-edit clean_19 Nov 2019.json -2023-11-21 08:05:44 - INFO - 8 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022.json -2023-11-21 08:05:45 - INFO - 32 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022.json -2023-11-21 08:05:47 - INFO - 37 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022.json -2023-11-21 08:05:51 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020.json -2023-11-21 08:05:53 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022.json -2023-11-21 08:05:55 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021.json -2023-11-21 08:06:10 - INFO - 94 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021.json -2023-11-21 08:06:17 - INFO - 56 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023.json -2023-11-21 08:06:22 - INFO - 46 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021.json -2023-11-21 08:06:28 - INFO - 57 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json -2023-11-21 08:06:35 - INFO - 55 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021.json -2023-11-21 08:06:35 - INFO - Number of successed saved files: 15 -2023-11-21 08:06:35 - INFO - Number of seactions: 926 -2023-11-21 08:06:35 - INFO - Number of seactions after cleaning: 585 -2023-11-21 08:06:35 - INFO - Number of cleaned seactions: 0 -2023-11-21 08:06:36 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-21 08:06:36 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-21 08:06:36 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.357s] -2023-11-21 08:06:36 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-21 08:06:36 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.008s] -2023-11-21 08:06:36 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 21 -2023-11-21 08:06:36 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.114s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 64 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.412s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5851 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.290s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6771 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.140s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8423 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.101s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5526 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.076s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 7356 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.098s] -2023-11-21 08:06:37 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 8637 -2023-11-21 08:06:37 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.108s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 10284 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.133s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 10467 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.105s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 17239 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.146s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 3330 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.063s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 1500 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.044s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 5526 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.062s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 6258 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.055s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 219 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.066s] -2023-11-21 08:06:38 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 10101 -2023-11-21 08:06:38 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.085s] -2023-11-21 08:06:38 - INFO - File Processing completed -2023-11-21 14:14:21 - INFO - 8 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.11 Integrated Assessments_validated clean_17 Jun 2022.json -2023-11-21 14:14:23 - INFO - 32 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.41 DDR Budgeting and Financing_validated copy-edit clean_23 Mar 2022.json -2023-11-21 14:14:26 - INFO - 37 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 3.50 Monitoring and Evaluation_validated copy-edit clean_23 Mar 2022.json -2023-11-21 14:14:31 - INFO - 47 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.10 Disarmament_validated copy-edit clean_16 Jun 2020.json -2023-11-21 14:14:34 - INFO - 1 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.30 Reintegration_validated copy-edit clean_26 Sep 2022.json -2023-11-21 14:14:36 - INFO - 34 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 4.60 Public Info and Strategic Communication_validated copy-edit clean_24 Feb 2021.json -2023-11-21 14:14:49 - INFO - 94 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.20 Children and DDR_validated copy-edited clean_9 Nov 2021.json -2023-11-21 14:14:54 - INFO - 56 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.40 Cross-border Population Movements_validated copy-edit clean_23 Mar 2023.json -2023-11-21 14:14:58 - INFO - 46 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 5.80 Disability and Inclusive DDR_validated copy-edit clean_26 Jul 2021.json -2023-11-21 14:15:03 - INFO - 57 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 6.10 DDR and Security Sector Reform_validated copy-edit clean_10 Apr 2023.json -2023-11-21 14:15:09 - INFO - 55 seactions has been saved to: /home/louai/Documents/BICC/IDDRS/iddrs_tool/iddrs_api/static/data/json/IDDRS 6.30 DDR and Natural Resources_validated copy-edit clean_9 Nov 2021.json -2023-11-21 14:15:09 - INFO - Number of successed saved files: 11 -2023-11-21 14:15:09 - INFO - Number of seactions: 669 -2023-11-21 14:15:09 - INFO - Number of seactions after cleaning: 467 -2023-11-21 14:15:09 - INFO - Number of cleaned seactions: 0 -2023-11-21 14:15:09 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-21 14:15:09 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-21 14:15:09 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.096s] -2023-11-21 14:15:09 - DEBUG - https://localhost:9200 "HEAD /iddrs HTTP/1.1" 200 0 -2023-11-21 14:15:09 - INFO - HEAD https://localhost:9200/iddrs [status:200 duration:0.006s] -2023-11-21 14:15:09 - DEBUG - https://localhost:9200 "DELETE /iddrs HTTP/1.1" 200 0 -2023-11-21 14:15:09 - INFO - DELETE https://localhost:9200/iddrs [status:200 duration:0.087s] -2023-11-21 14:15:09 - DEBUG - https://localhost:9200 "PUT /iddrs HTTP/1.1" 200 0 -2023-11-21 14:15:09 - INFO - PUT https://localhost:9200/iddrs [status:200 duration:0.341s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.184s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.033s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.037s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.038s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.047s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.040s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.048s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.033s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.034s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.035s] -2023-11-21 14:15:10 - DEBUG - https://localhost:9200 "PUT /iddrs/_bulk HTTP/1.1" 200 0 -2023-11-21 14:15:10 - INFO - PUT https://localhost:9200/iddrs/_bulk [status:200 duration:0.047s] -2023-11-21 14:15:10 - INFO - File Processing completed -2023-11-21 14:15:58 - DEBUG - Starting new HTTPS connection (1): localhost:9200 -2023-11-21 14:15:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-21 14:15:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.035s] -2023-11-21 14:15:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-21 14:15:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.007s] -2023-11-21 14:15:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-21 14:15:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.008s] -2023-11-21 14:15:58 - DEBUG - https://localhost:9200 "POST /iddrs/_search HTTP/1.1" 200 None -2023-11-21 14:15:58 - INFO - POST https://localhost:9200/iddrs/_search [status:200 duration:0.020s]